Spaces:
Running
Running
Add 2 files
Browse files- README.md +7 -5
- index.html +128 -19
README.md
CHANGED
|
@@ -1,10 +1,12 @@
|
|
| 1 |
---
|
| 2 |
-
title:
|
| 3 |
-
emoji:
|
| 4 |
-
colorFrom:
|
| 5 |
-
colorTo:
|
| 6 |
sdk: static
|
| 7 |
pinned: false
|
|
|
|
|
|
|
| 8 |
---
|
| 9 |
|
| 10 |
-
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
|
| 1 |
---
|
| 2 |
+
title: rise-up
|
| 3 |
+
emoji: 🐳
|
| 4 |
+
colorFrom: blue
|
| 5 |
+
colorTo: blue
|
| 6 |
sdk: static
|
| 7 |
pinned: false
|
| 8 |
+
tags:
|
| 9 |
+
- deepsite
|
| 10 |
---
|
| 11 |
|
| 12 |
+
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
index.html
CHANGED
|
@@ -1,19 +1,128 @@
|
|
| 1 |
-
<!
|
| 2 |
-
<html>
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>RISE UP - Challenge Yourself</title>
|
| 7 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
| 8 |
+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
| 9 |
+
<style>
|
| 10 |
+
.gradient-bg {
|
| 11 |
+
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
| 12 |
+
}
|
| 13 |
+
.challenge-card {
|
| 14 |
+
transition: all 0.3s ease;
|
| 15 |
+
transform: translateY(0);
|
| 16 |
+
}
|
| 17 |
+
.challenge-card:hover {
|
| 18 |
+
transform: translateY(-5px);
|
| 19 |
+
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
|
| 20 |
+
}
|
| 21 |
+
.streak-pulse {
|
| 22 |
+
animation: pulse 2s infinite;
|
| 23 |
+
}
|
| 24 |
+
@keyframes pulse {
|
| 25 |
+
0% {
|
| 26 |
+
transform: scale(1);
|
| 27 |
+
box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
|
| 28 |
+
}
|
| 29 |
+
70% {
|
| 30 |
+
transform: scale(1.05);
|
| 31 |
+
box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
|
| 32 |
+
}
|
| 33 |
+
100% {
|
| 34 |
+
transform: scale(1);
|
| 35 |
+
box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
|
| 36 |
+
}
|
| 37 |
+
}
|
| 38 |
+
.progress-ring__circle {
|
| 39 |
+
transition: stroke-dashoffset 0.35s;
|
| 40 |
+
transform: rotate(-90deg);
|
| 41 |
+
transform-origin: 50% 50%;
|
| 42 |
+
}
|
| 43 |
+
</style>
|
| 44 |
+
</head>
|
| 45 |
+
<body class="bg-gray-50 font-sans">
|
| 46 |
+
<!-- Header -->
|
| 47 |
+
<header class="gradient-bg text-white">
|
| 48 |
+
<div class="container mx-auto px-4 py-6">
|
| 49 |
+
<div class="flex justify-between items-center">
|
| 50 |
+
<div class="flex items-center space-x-2">
|
| 51 |
+
<i class="fas fa-fire text-2xl text-yellow-300"></i>
|
| 52 |
+
<h1 class="text-2xl font-bold">RISE UP</h1>
|
| 53 |
+
</div>
|
| 54 |
+
<nav class="hidden md:flex space-x-8">
|
| 55 |
+
<a href="#" class="hover:text-yellow-300 transition">Home</a>
|
| 56 |
+
<a href="#" class="hover:text-yellow-300 transition">Challenges</a>
|
| 57 |
+
<a href="#" class="hover:text-yellow-300 transition">Teams</a>
|
| 58 |
+
<a href="#" class="hover:text-yellow-300 transition">Progress</a>
|
| 59 |
+
</nav>
|
| 60 |
+
<div class="flex items-center space-x-4">
|
| 61 |
+
<button class="bg-white text-purple-700 px-4 py-2 rounded-full font-semibold hover:bg-purple-100 transition">Sign In</button>
|
| 62 |
+
<button class="hidden md:block bg-yellow-300 text-purple-900 px-4 py-2 rounded-full font-semibold hover:bg-yellow-400 transition">Sign Up</button>
|
| 63 |
+
<button class="md:hidden text-white">
|
| 64 |
+
<i class="fas fa-bars text-2xl"></i>
|
| 65 |
+
</button>
|
| 66 |
+
</div>
|
| 67 |
+
</div>
|
| 68 |
+
</div>
|
| 69 |
+
</header>
|
| 70 |
+
|
| 71 |
+
<!-- Hero Section -->
|
| 72 |
+
<section class="gradient-bg text-white py-16">
|
| 73 |
+
<div class="container mx-auto px-4 flex flex-col md:flex-row items-center">
|
| 74 |
+
<div class="md:w-1/2 mb-10 md:mb-0">
|
| 75 |
+
<h1 class="text-4xl md:text-5xl font-bold mb-6">Build Better Habits Through Challenges</h1>
|
| 76 |
+
<p class="text-xl mb-8">Create personal or team challenges for exercise, diet, and self-discipline. Track progress, build streaks, and rise up to your potential.</p>
|
| 77 |
+
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
|
| 78 |
+
<button class="bg-yellow-300 text-purple-900 px-6 py-3 rounded-full font-bold hover:bg-yellow-400 transition">Start a Challenge</button>
|
| 79 |
+
<button class="bg-white text-purple-700 px-6 py-3 rounded-full font-bold hover:bg-purple-100 transition">Join a Team</button>
|
| 80 |
+
</div>
|
| 81 |
+
</div>
|
| 82 |
+
<div class="md:w-1/2 flex justify-center">
|
| 83 |
+
<div class="relative">
|
| 84 |
+
<div class="w-64 h-64 md:w-80 md:h-80 bg-white bg-opacity-20 rounded-full flex items-center justify-center">
|
| 85 |
+
<div class="w-56 h-56 md:w-72 md:h-72 bg-white bg-opacity-30 rounded-full flex items-center justify-center">
|
| 86 |
+
<div class="w-48 h-48 md:w-64 md:h-64 bg-white bg-opacity-40 rounded-full flex items-center justify-center">
|
| 87 |
+
<i class="fas fa-trophy text-6xl md:text-8xl text-yellow-300"></i>
|
| 88 |
+
</div>
|
| 89 |
+
</div>
|
| 90 |
+
</div>
|
| 91 |
+
<div class="absolute -bottom-6 left-0 right-0 flex justify-center space-x-4">
|
| 92 |
+
<div class="bg-white text-purple-700 px-4 py-2 rounded-full shadow-lg flex items-center">
|
| 93 |
+
<i class="fas fa-running mr-2"></i>
|
| 94 |
+
<span>Exercise</span>
|
| 95 |
+
</div>
|
| 96 |
+
<div class="bg-white text-purple-700 px-4 py-2 rounded-full shadow-lg flex items-center">
|
| 97 |
+
<i class="fas fa-utensils mr-2"></i>
|
| 98 |
+
<span>Diet</span>
|
| 99 |
+
</div>
|
| 100 |
+
<div class="bg-white text-purple-700 px-4 py-2 rounded-full shadow-lg flex items-center">
|
| 101 |
+
<i class="fas fa-brain mr-2"></i>
|
| 102 |
+
<span>Discipline</span>
|
| 103 |
+
</div>
|
| 104 |
+
</div>
|
| 105 |
+
</div>
|
| 106 |
+
</div>
|
| 107 |
+
</div>
|
| 108 |
+
</section>
|
| 109 |
+
|
| 110 |
+
<!-- Stats Section -->
|
| 111 |
+
<section class="py-12 bg-white">
|
| 112 |
+
<div class="container mx-auto px-4">
|
| 113 |
+
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 text-center">
|
| 114 |
+
<div class="p-6 rounded-xl bg-gradient-to-br from-purple-50 to-indigo-50">
|
| 115 |
+
<div class="text-4xl font-bold text-purple-700 mb-2">10K+</div>
|
| 116 |
+
<div class="text-gray-600">Active Challenges</div>
|
| 117 |
+
<i class="fas fa-bolt text-yellow-400 mt-4 text-2xl"></i>
|
| 118 |
+
</div>
|
| 119 |
+
<div class="p-6 rounded-xl bg-gradient-to-br from-purple-50 to-indigo-50">
|
| 120 |
+
<div class="text-4xl font-bold text-purple-700 mb-2">500+</div>
|
| 121 |
+
<div class="text-gray-600">Teams Competing</div>
|
| 122 |
+
<i class="fas fa-users text-blue-400 mt-4 text-2xl"></i>
|
| 123 |
+
</div>
|
| 124 |
+
<div class="p-6 rounded-xl bg-gradient-to-br from-purple-50 to-indigo-50">
|
| 125 |
+
<div class="text-4xl font-bold text-purple-700 mb-2">1M+</div>
|
| 126 |
+
<div class="text-gray-600">Days Logged</div>
|
| 127 |
+
<i class="fas
|
| 128 |
+
</html>
|