rise-up / index.html
SajjadAziz's picture
Add 2 files
dd1423e verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>RISE UP - Challenge Yourself</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
.gradient-bg {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.challenge-card {
transition: all 0.3s ease;
transform: translateY(0);
}
.challenge-card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.streak-pulse {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% {
transform: scale(1);
box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
}
70% {
transform: scale(1.05);
box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
}
100% {
transform: scale(1);
box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
}
}
.progress-ring__circle {
transition: stroke-dashoffset 0.35s;
transform: rotate(-90deg);
transform-origin: 50% 50%;
}
</style>
</head>
<body class="bg-gray-50 font-sans">
<!-- Header -->
<header class="gradient-bg text-white">
<div class="container mx-auto px-4 py-6">
<div class="flex justify-between items-center">
<div class="flex items-center space-x-2">
<i class="fas fa-fire text-2xl text-yellow-300"></i>
<h1 class="text-2xl font-bold">RISE UP</h1>
</div>
<nav class="hidden md:flex space-x-8">
<a href="#" class="hover:text-yellow-300 transition">Home</a>
<a href="#" class="hover:text-yellow-300 transition">Challenges</a>
<a href="#" class="hover:text-yellow-300 transition">Teams</a>
<a href="#" class="hover:text-yellow-300 transition">Progress</a>
</nav>
<div class="flex items-center space-x-4">
<button class="bg-white text-purple-700 px-4 py-2 rounded-full font-semibold hover:bg-purple-100 transition">Sign In</button>
<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>
<button class="md:hidden text-white">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
</div>
</div>
</header>
<!-- Hero Section -->
<section class="gradient-bg text-white py-16">
<div class="container mx-auto px-4 flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0">
<h1 class="text-4xl md:text-5xl font-bold mb-6">Build Better Habits Through Challenges</h1>
<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>
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
<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>
<button class="bg-white text-purple-700 px-6 py-3 rounded-full font-bold hover:bg-purple-100 transition">Join a Team</button>
</div>
</div>
<div class="md:w-1/2 flex justify-center">
<div class="relative">
<div class="w-64 h-64 md:w-80 md:h-80 bg-white bg-opacity-20 rounded-full flex items-center justify-center">
<div class="w-56 h-56 md:w-72 md:h-72 bg-white bg-opacity-30 rounded-full flex items-center justify-center">
<div class="w-48 h-48 md:w-64 md:h-64 bg-white bg-opacity-40 rounded-full flex items-center justify-center">
<i class="fas fa-trophy text-6xl md:text-8xl text-yellow-300"></i>
</div>
</div>
</div>
<div class="absolute -bottom-6 left-0 right-0 flex justify-center space-x-4">
<div class="bg-white text-purple-700 px-4 py-2 rounded-full shadow-lg flex items-center">
<i class="fas fa-running mr-2"></i>
<span>Exercise</span>
</div>
<div class="bg-white text-purple-700 px-4 py-2 rounded-full shadow-lg flex items-center">
<i class="fas fa-utensils mr-2"></i>
<span>Diet</span>
</div>
<div class="bg-white text-purple-700 px-4 py-2 rounded-full shadow-lg flex items-center">
<i class="fas fa-brain mr-2"></i>
<span>Discipline</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Stats Section -->
<section class="py-12 bg-white">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 text-center">
<div class="p-6 rounded-xl bg-gradient-to-br from-purple-50 to-indigo-50">
<div class="text-4xl font-bold text-purple-700 mb-2">10K+</div>
<div class="text-gray-600">Active Challenges</div>
<i class="fas fa-bolt text-yellow-400 mt-4 text-2xl"></i>
</div>
<div class="p-6 rounded-xl bg-gradient-to-br from-purple-50 to-indigo-50">
<div class="text-4xl font-bold text-purple-700 mb-2">500+</div>
<div class="text-gray-600">Teams Competing</div>
<i class="fas fa-users text-blue-400 mt-4 text-2xl"></i>
</div>
<div class="p-6 rounded-xl bg-gradient-to-br from-purple-50 to-indigo-50">
<div class="text-4xl font-bold text-purple-700 mb-2">1M+</div>
<div class="text-gray-600">Days Logged</div>
<i class="fas
</html>