| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>HabitHero | Transform Your Daily Routine</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%); |
| } |
| .feature-card { |
| transition: all 0.3s ease; |
| } |
| .feature-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); |
| } |
| .app-mockup { |
| filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.1)); |
| } |
| .testimonial-card { |
| background: rgba(255, 255, 255, 0.1); |
| backdrop-filter: blur(10px); |
| } |
| .pulse { |
| animation: pulse 2s infinite; |
| } |
| @keyframes pulse { |
| 0% { |
| transform: scale(1); |
| } |
| 50% { |
| transform: scale(1.05); |
| } |
| 100% { |
| transform: scale(1); |
| } |
| } |
| </style> |
| </head> |
| <body class="font-sans antialiased text-gray-800"> |
| |
| <nav class="bg-white shadow-sm sticky top-0 z-50"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| <div class="flex justify-between h-16"> |
| <div class="flex items-center"> |
| <div class="flex-shrink-0 flex items-center"> |
| <i class="fas fa-check-circle text-indigo-600 text-2xl mr-2"></i> |
| <span class="text-xl font-bold text-gray-900">HabitHero</span> |
| </div> |
| </div> |
| <div class="hidden md:ml-6 md:flex md:items-center md:space-x-8"> |
| <a href="#features" class="text-gray-500 hover:text-gray-700 px-3 py-2 text-sm font-medium">Features</a> |
| <a href="#testimonials" class="text-gray-500 hover:text-gray-700 px-3 py-2 text-sm font-medium">Testimonials</a> |
| <a href="#" class="text-indigo-600 hover:text-indigo-800 px-3 py-2 text-sm font-medium">Download</a> |
| </div> |
| <div class="-mr-2 flex items-center md:hidden"> |
| <button type="button" id="mobile-menu-button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none"> |
| <i class="fas fa-bars"></i> |
| </button> |
| </div> |
| </div> |
| </div> |
| |
| <div id="mobile-menu" class="hidden md:hidden bg-white border-t"> |
| <div class="px-2 pt-2 pb-3 space-y-1"> |
| <a href="#features" class="block px-3 py-2 text-base font-medium text-gray-700 hover:text-gray-900 hover:bg-gray-50">Features</a> |
| <a href="#testimonials" class="block px-3 py-2 text-base font-medium text-gray-700 hover:text-gray-900 hover:bg-gray-50">Testimonials</a> |
| <a href="#" class="block px-3 py-2 text-base font-medium text-indigo-600 hover:text-indigo-800 hover:bg-gray-50">Download</a> |
| </div> |
| </div> |
| </nav> |
|
|
| |
| <section class="gradient-bg text-white"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-20 md:py-32"> |
| <div class="md:flex md:items-center md:justify-between"> |
| <div class="md:w-1/2 mb-12 md:mb-0"> |
| <h1 class="text-4xl md:text-5xl font-bold leading-tight mb-6">Transform Your Day, <span class="text-yellow-300">One Habit at a Time</span></h1> |
| <p class="text-xl mb-8 opacity-90">The scientifically-proven habit tracker that helps you build lasting routines. Small daily improvements compound into life-changing results.</p> |
| <div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4"> |
| <a href="#" class="bg-white text-indigo-700 hover:bg-gray-100 font-bold py-4 px-8 rounded-lg text-center pulse"> |
| <div class="flex items-center justify-center"> |
| <i class="fab fa-apple mr-3 text-xl"></i> |
| <div> |
| <div class="text-xs">Download on the</div> |
| <div class="text-lg">App Store</div> |
| </div> |
| </div> |
| </a> |
| <a href="#" class="bg-gray-900 hover:bg-gray-800 text-white font-bold py-4 px-8 rounded-lg text-center"> |
| <div class="flex items-center justify-center"> |
| <i class="fab fa-google-play mr-3 text-xl"></i> |
| <div> |
| <div class="text-xs">Get it on</div> |
| <div class="text-lg">Google Play</div> |
| </div> |
| </div> |
| </a> |
| </div> |
| </div> |
| <div class="md:w-1/2 flex justify-center"> |
| <svg class="app-mockup w-full max-w-md" viewBox="0 0 300 600" xmlns="http://www.w3.org/2000/svg"> |
| |
| <rect x="20" y="20" width="260" height="560" rx="30" fill="#fff" stroke="#e5e7eb" stroke-width="2"/> |
| |
| <rect x="40" y="40" width="220" height="520" rx="10" fill="#f9fafb"/> |
| |
| <rect x="40" y="40" width="220" height="70" rx="10" fill="#4f46e5"/> |
| <text x="150" y="80" font-family="Arial" font-size="18" font-weight="bold" fill="#fff" text-anchor="middle">HabitHero</text> |
| <text x="150" y="105" font-family="Arial" font-size="12" fill="#c7d2fe" text-anchor="middle">Today's Progress</text> |
| |
| |
| <circle cx="150" cy="170" r="50" fill="none" stroke="#4f46e5" stroke-width="8"/> |
| <text x="150" y="175" font-family="Arial" font-size="30" font-weight="bold" fill="#4f46e5" text-anchor="middle">75%</text> |
| <text x="150" y="210" font-family="Arial" font-size="12" fill="#6b7280" text-anchor="middle">Daily Goal</text> |
| |
| |
| <rect x="60" cy="230" width="180" height="40" rx="5" fill="#fff" stroke="#e5e7eb" stroke-width="1"/> |
| <rect x="60" cy="280" width="180" height="40" rx="5" fill="#fff" stroke="#e5e7eb" stroke-width="1"/> |
| <rect x="60" cy="330" width="180" height="40" rx="5" fill="#fff" stroke="#e5e7eb" stroke-width="1"/> |
| |
| |
| <circle cx="80" cy="250" r="10" fill="#4f46e5"/> |
| <path d="M75 250 L78 255 L85 245" stroke="#fff" stroke-width="2" fill="none"/> |
| |
| <circle cx="80" cy="300" r="10" fill="#e5e7eb"/> |
| <circle cx="80" cy="350" r="10" fill="#e5e7eb"/> |
| |
| |
| <text x="100" y="255" font-family="Arial" font-size="14" fill="#111827">Morning Meditation</text> |
| <text x="100" y="305" font-family="Arial" font-size="14" fill="#6b7280">Drink 8 Glasses</text> |
| <text x="100" y="355" font-family="Arial" font-size="14" fill="#6b7280">30-min Workout</text> |
| |
| |
| <rect x="40" y="570" width="220" height="40" rx="5" fill="#fff" stroke="#e5e7eb" stroke-width="1"/> |
| <circle cx="80" cy="590" r="5" fill="#4f46e5"/> |
| <circle cx="150" cy="590" r="5" fill="#d1d5db"/> |
| <circle cx="220" cy="590" r="5" fill="#d1d5db"/> |
| </svg> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section id="features" class="py-20 bg-white"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| <div class="text-center mb-16"> |
| <h2 class="text-3xl font-bold text-gray-900 mb-4">Build Habits That Actually Stick</h2> |
| <p class="text-xl text-gray-600 max-w-3xl mx-auto">Backed by behavioral science and designed for real life. Here's how HabitHero helps you succeed.</p> |
| </div> |
|
|
| |
| <div class="md:flex md:items-center md:space-x-12 mb-20"> |
| <div class="md:w-1/2 mb-10 md:mb-0"> |
| <svg class="w-full max-w-md mx-auto app-mockup" viewBox="0 0 300 500" xmlns="http://www.w3.org/2000/svg"> |
| |
| <rect x="20" y="20" width="260" height="460" rx="30" fill="#fff" stroke="#e5e7eb" stroke-width="2"/> |
| |
| <rect x="40" y="40" width="220" height="420" rx="10" fill="#f9fafb"/> |
| |
| |
| <rect x="60" y="60" width="180" height="60" rx="5" fill="#4f46e5"/> |
| <text x="150" y="90" font-family="Arial" font-size="18" font-weight="bold" fill="#fff" text-anchor="middle">7-Day Streak!</text> |
| <text x="150" y="110" font-family="Arial" font-size="12" fill="#c7d2fe" text-anchor="middle">Keep going to unlock rewards</text> |
| |
| |
| <rect x="60" y="140" width="180" height="300" rx="5" fill="#fff" stroke="#e5e7eb" stroke-width="1"/> |
| <text x="150" y="165" font-family="Arial" font-size="14" font-weight="bold" fill="#111827" text-anchor="middle">January 2023</text> |
| |
| |
| <line x1="60" y1="180" x2="240" y2="180" stroke="#e5e7eb" stroke-width="1"/> |
| <text x="80" y="200" font-family="Arial" font-size="12" fill="#6b7280" text-anchor="middle">S</text> |
| <text x="110" y="200" font-family="Arial" font-size="12" fill="#6b7280" text-anchor="middle">M</text> |
| <text x="140" y="200" font-family="Arial" font-size="12" fill="#6b7280" text-anchor="middle">T</text> |
| <text x="170" y="200" font-family="Arial" font-size="12" fill="#6b7280" text-anchor="middle">W</text> |
| <text x="200" y="200" font-family="Arial" font-size="12" fill="#6b7280" text-anchor="middle">T</text> |
| <text x="230" y="200" font-family="Arial" font-size="12" fill="#6b7280" text-anchor="middle">F</text> |
| |
| |
| <circle cx="80" cy="230" r="10" fill="#4f46e5"/> |
| <path d="M75 230 L78 235 L85 225" stroke="#fff" stroke-width="2" fill="none"/> |
| |
| <circle cx="110" cy="230" r="10" fill="#4f46e5"/> |
| <path d="M105 230 L108 235 L115 225" stroke="#fff" stroke-width="2" fill="none"/> |
| |
| <circle cx="140" cy="230" r="10" fill="#4f46e5"/> |
| <path d="M135 230 L138 235 L145 225" stroke="#fff" stroke-width="2" fill="none"/> |
| |
| |
| <circle cx="170" cy="230" r="15" fill="#f59e0b" stroke="#fff" stroke-width="2"/> |
| <text x="170" y="235" font-family="Arial" font-size="12" font-weight="bold" fill="#fff" text-anchor="middle">17</text> |
| |
| |
| <text x="200" y="235" font-family="Arial" font-size="12" fill="#6b7280" text-anchor="middle">18</text> |
| <text x="230" y="235" font-family="Arial" font-size="12" fill="#6b7280" text-anchor="middle">19</text> |
| </svg> |
| </div> |
| <div class="md:w-1/2"> |
| <div class="max-w-md"> |
| <div class="flex items-center mb-4"> |
| <div class="bg-indigo-100 rounded-full p-2 mr-4"> |
| <i class="fas fa-fire text-indigo-600 text-xl"></i> |
| </div> |
| <h3 class="text-2xl font-bold text-gray-900">Streaks That Motivate</h3> |
| </div> |
| <p class="text-gray-600 mb-6">Our streak system taps into your brain's reward centers, making habit formation feel exciting rather than exhausting. Watch your progress grow day by day.</p> |
| <ul class="space-y-3"> |
| <li class="flex items-start"> |
| <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i> |
| <span class="text-gray-700">Visual progress tracking that keeps you engaged</span> |
| </li> |
| <li class="flex items-start"> |
| <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i> |
| <span class="text-gray-700">Milestone celebrations to acknowledge your wins</span> |
| </li> |
| <li class="flex items-start"> |
| <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i> |
| <span class="text-gray-700">Smart reminders before you're about to break a streak</span> |
| </li> |
| </ul> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="md:flex md:flex-row-reverse md:items-center md:space-x-12 mb-20"> |
| <div class="md:w-1/2 mb-10 md:mb-0"> |
| <svg class="w-full max-w-md mx-auto app-mockup" viewBox="0 0 300 500" xmlns="http://www.w3.org/2000/svg"> |
| |
| <rect x="20" y="20" width="260" height="460" rx="30" fill="#fff" stroke="#e5e7eb" stroke-width="2"/> |
| |
| <rect x="40" y="40" width="220" height="420" rx="10" fill="#f9fafb"/> |
| |
| |
| <rect x="40" y="40" width="220" height="60" rx="10" fill="#4f46e5"/> |
| <text x="150" y="75" font-family="Arial" font-size="16" font-weight="bold" fill="#fff" text-anchor="middle">Habit Analytics</text> |
| |
| |
| <rect x="60" y="120" width="180" height="100" rx="5" fill="#fff" stroke="#e5e7eb" stroke-width="1"/> |
| <text x="150" y="150" font-family="Arial" font-size="14" font-weight="bold" fill="#111827" text-anchor="middle">Your Consistency</text> |
| <text x="150" y="180" font-family="Arial" font-size="32" font-weight="bold" fill="#4f46e5" text-anchor="middle">83%</text> |
| |
| |
| <rect x="60" y="240" width="180" height="20" rx="10" fill="#e5e7eb"/> |
| <rect x="60" y="240" width="144" height="20" rx="10" fill="#4f46e5"/> |
| <text x="70" y="255" font-family="Arial" font-size="10" fill="#fff">Morning Routine</text> |
| |
| <rect x="60" y="270" width="180" height="20" rx="10" fill="#e5e7eb"/> |
| <rect x="60" y="270" width="90" height="20" rx="10" fill="#4f46e5"/> |
| <text x="70" y="285" font-family="Arial" font-size="10" fill="#fff">Exercise</text> |
| |
| |
| <rect x="60" y="320" width="180" height="120" rx="5" fill="#fff" stroke="#e5e7eb" stroke-width="1"/> |
| <text x="150" y="340" font-family="Arial" font-size="14" font-weight="bold" fill="#111827" text-anchor="middle">Weekly Insights</text> |
| <text x="150" y="370" font-family="Arial" font-size="12" fill="#6b7280" text-anchor="middle">You're most consistent</text> |
| <text x="150" y="390" font-family="Arial" font-size="12" fill="#6b7280" text-anchor="middle">on Tuesday mornings</text> |
| <text x="150" y="410" font-family="Arial" font-size="12" fill="#6b7280" text-anchor="middle">between 7-8 AM</text> |
| </svg> |
| </div> |
| <div class="md:w-1/2"> |
| <div class="max-w-md"> |
| <div class="flex items-center mb-4"> |
| <div class="bg-indigo-100 rounded-full p-2 mr-4"> |
| <i class="fas fa-chart-line text-indigo-600 text-xl"></i> |
| </div> |
| <h3 class="text-2xl font-bold text-gray-900">Data-Driven Insights</h3> |
| </div> |
| <p class="text-gray-600 mb-6">Go beyond simple tracking with powerful analytics that reveal your patterns, strengths, and opportunities for improvement.</p> |
| <ul class="space-y-3"> |
| <li class="flex items-start"> |
| <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i> |
| <span class="text-gray-700">Personalized recommendations based on your behavior</span> |
| </li> |
| <li class="flex items-start"> |
| <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i> |
| <span class="text-gray-700">Identify your most productive times and patterns</span> |
| </li> |
| <li class="flex items-start"> |
| <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i> |
| <span class="text-gray-700">Track long-term progress with detailed historical data</span> |
| </li> |
| </ul> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="md:flex md:items-center md:space-x-12"> |
| <div class="md:w-1/2 mb-10 md:mb-0"> |
| <svg class="w-full max-w-md mx-auto app-mockup" viewBox="0 0 300 500" xmlns="http://www.w3.org/2000/svg"> |
| |
| <rect x="20" y="20" width="260" height="460" rx="30" fill="#fff" stroke="#e5e7eb" stroke-width="2"/> |
| |
| <rect x="40" y="40" width="220" height="420" rx="10" fill="#f9fafb"/> |
| |
| |
| <rect x="40" y="40" width="220" height="60" rx="10" fill="#4f46e5"/> |
| <text x="150" y="75" font-family="Arial" font-size="16" font-weight="bold" fill="#fff" text-anchor="middle">Community</text> |
| |
| |
| <rect x="60" y="120" width="180" height="60" rx="5" fill="#fff" stroke="#e5e7eb" stroke-width="1"/> |
| <circle cx="80" cy="150" r="15" fill="#4f46e5"/> |
| <text x="110" y="150" font-family="Arial" font-size="12" fill="#111827">Sarah completed her 5-day streak!</text> |
| |
| |
| <rect x="60" y="200" width="180" height="120" rx="5" fill="#fff" stroke="#e5e7eb" stroke-width="1"/> |
| <text x="150" y="220" font-family="Arial" font-size="14" font-weight="bold" fill="#111827" text-anchor="middle">30-Day Challenge</text> |
| <text x="150" y="240" font-family="Arial" font-size="12" fill="#6b7280" text-anchor="middle">Hydration Challenge</text> |
| |
| <rect x="80" y="260" width="140" height="10" rx="5" fill="#e5e7eb"/> |
| <rect x="80" y="260" width="70" height="10" rx="5" fill="#4f46e5"/> |
| <text x="150" y="290" font-family="Arial" font-size="12" fill="#6b7280" text-anchor="middle">12/30 members completed today</text> |
| |
| |
| <rect x="100" y="310" width="100" height="30" rx="15" fill="#4f46e5"/> |
| <text x="150" y="330" font-family="Arial" font-size="12" font-weight="bold" fill="#fff" text-anchor="middle">Join</text> |
| </svg> |
| </div> |
| <div class="md:w-1/2"> |
| <div class="max-w-md"> |
| <div class="flex items-center mb-4"> |
| <div class="bg-indigo-100 rounded-full p-2 mr-4"> |
| <i class="fas fa-users text-indigo-600 text-xl"></i> |
| </div> |
| <h3 class="text-2xl font-bold text-gray-900">Community Support</h3> |
| </div> |
| <p class="text-gray-600 mb-6">Join thousands of others on the same journey. Our supportive community and group challenges make habit formation a team sport.</p> |
| <ul class="space-y-3"> |
| <li class="flex items-start"> |
| <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i> |
| <span class="text-gray-700">Share progress and get encouragement from peers</span> |
| </li> |
| <li class="flex items-start"> |
| <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i> |
| <span class="text-gray-700">Participate in themed challenges with rewards</span> |
| </li> |
| <li class="flex items-start"> |
| <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i> |
| <span class="text-gray-700">Learn from others' experiences and strategies</span> |
| </li> |
| </ul> |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section id="testimonials" class="py-20 gradient-bg text-white"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| <div class="text-center mb-16"> |
| <h2 class="text-3xl font-bold mb-4">Trusted by 250,000+ Habit Builders</h2> |
| <p class="text-xl opacity-90 max-w-3xl mx-auto">Real people achieving real results. Here's what they say about HabitHero.</p> |
| </div> |
| |
| <div class="grid md:grid-cols-3 gap-8"> |
| |
| <div class="testimonial-card p-8 rounded-xl"> |
| <div class="flex items-center mb-4"> |
| <div class="flex-shrink-0"> |
| <div class="h-12 w-12 rounded-full bg-indigo-200 flex items-center justify-center"> |
| <span class="text-indigo-700 font-bold">JD</span> |
| </div> |
| </div> |
| <div class="ml-4"> |
| <h4 class="font-bold">Jamie D.</h4> |
| <div class="flex"> |
| <i class="fas fa-star text-yellow-300"></i> |
| <i class="fas fa-star text-yellow-300"></i> |
| <i class="fas fa-star text-yellow-300"></i> |
| <i class="fas fa-star text-yellow-300"></i> |
| <i class="fas fa-star text-yellow-300"></i> |
| </div> |
| </div> |
| </div> |
| <p class="mb-4">"After years of failed attempts, HabitHero finally helped me establish a consistent morning routine. The streak system kept me motivated when willpower alone wasn't enough."</p> |
| <div class="text-sm opacity-80">Meditated 120+ days in a row</div> |
| </div> |
| |
| |
| <div class="testimonial-card p-8 rounded-xl"> |
| <div class="flex items-center mb-4"> |
| <div class="flex-shrink-0"> |
| <div class="h-12 w-12 rounded-full bg-indigo-200 flex items-center justify-center"> |
| <span class="text-indigo-700 font-bold">TS</span> |
| </div> |
| </div> |
| <div class="ml-4"> |
| <h4 class="font-bold">Taylor S.</h4> |
| <div class="flex"> |
| <i class="fas fa-star text-yellow-300"></i> |
| <i class="fas fa-star text-yellow-300"></i> |
| <i class="fas fa-star text-yellow-300"></i> |
| <i class="fas fa-star text-yellow-300"></i> |
| <i class="fas fa-star text-yellow-300"></i> |
| </div> |
| </div> |
| </div> |
| <p class="mb-4">"The analytics showed me I was most likely to skip workouts on Thursdays. Now I schedule them for mornings instead of evenings, and my consistency has improved dramatically."</p> |
| <div class="text-sm opacity-80">Worked out 5x/week for 3 months</div> |
| </div> |
| |
| |
| <div class="testimonial-card p-8 rounded-xl"> |
| <div class="flex items-center mb-4"> |
| <div class="flex-shrink-0"> |
| <div class="h-12 w-12 rounded-full bg-indigo-200 flex items-center justify-center"> |
| <span class="text-indigo-700 font-bold">AM</span> |
| </div> |
| </div> |
| <div class="ml-4"> |
| <h4 class="font-bold">Alex M.</h4> |
| <div class="flex"> |
| <i class="fas fa-star text-yellow-300"></i> |
| <i class="fas fa-star text-yellow-300"></i> |
| <i class="fas fa-star text-yellow-300"></i> |
| <i class="fas fa-star text-yellow-300"></i> |
| <i class="fas fa-star text-yellow-300"></i> |
| </div> |
| </div> |
| </div> |
| <p class="mb-4">"Joining the 30-day reading challenge pushed me to finally make time for books. The community support made all the difference when my motivation dipped in week two."</p> |
| <div class="text-sm opacity-80">Read 25 books last year</div> |
| </div> |
| </div> |
| |
| <div class="mt-12 text-center"> |
| <div class="inline-flex items-center space-x-2"> |
| <i class="fas fa-award text-yellow-300 text-2xl"></i> |
| <span class="font-bold">4.9/5 Rating Across 12,000+ Reviews</span> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section class="py-20 bg-white"> |
| <div class="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8 text-center"> |
| <h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-6">Ready to Change Your Life?</h2> |
| <p class="text-xl text-gray-600 mb-10">Small habits compound into massive results. Start your transformation today—it only takes 5 minutes to begin.</p> |
| |
| <div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-4 mb-16"> |
| <a href="#" class="bg-indigo-600 hover:bg-indigo-700 text-white font-bold py-4 px-8 rounded-lg text-center"> |
| <div class="flex items-center justify-center"> |
| <i class="fab fa-apple mr-3 text-xl"></i> |
| <div> |
| <div class="text-xs">Download on the</div> |
| <div class="text-lg">App Store</div> |
| </div> |
| </div> |
| </a> |
| <a href="#" class="bg-gray-900 hover:bg-gray-800 text-white font-bold py-4 px-8 rounded-lg text-center"> |
| <div class="flex items-center justify-center"> |
| <i class="fab fa-google-play mr-3 text-xl"></i> |
| <div> |
| <div class="text-xs">Get it on</div> |
| <div class="text-lg">Google Play</div> |
| </div> |
| </div> |
| </a> |
| </div> |
| |
| <div class="grid grid-cols-2 md:grid-cols-4 gap-8 text-center"> |
| <div> |
| <div class="text-3xl font-bold text-indigo-600">250K+</div> |
| <div class="text-gray-600">Users</div> |
| </div> |
| <div> |
| <div class="text-3xl font-bold text-indigo-600">4.9★</div> |
| <div class="text-gray-600">Average Rating</div> |
| </div> |
| <div> |
| <div class="text-3xl font-bold text-indigo-600">92%</div> |
| <div class="text-gray-600">Success Rate</div> |
| </div> |
| <div> |
| <div class="text-3xl font-bold text-indigo-600">10M+</div> |
| <div class="text-gray-600">Habits Tracked</div> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <footer class="bg-gray-50"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12"> |
| <div class="grid grid-cols-1 md:grid-cols-4 gap-8"> |
| <div> |
| <div class="flex items-center mb-4"> |
| <i class="fas fa-check-circle text-indigo-600 text-2xl mr-2"></i> |
| <span class="text-xl font-bold text-gray-900">HabitHero</span> |
| </div> |
| <p class="text-gray-600 mb-4">The simplest way to build habits that last.</p> |
| <div class="flex space-x-4"> |
| <a href="#" class="text-gray-500 hover:text-indigo-600"><i class="fab fa-twitter"></i></a> |
| <a href="#" class="text-gray-500 hover:text-indigo-600"><i class="fab fa-instagram"></i></a> |
| <a href="#" class="text-gray-500 hover:text-indigo-600"><i class="fab fa-facebook"></i></a> |
| </div> |
| </div> |
| <div> |
| <h3 class="text-sm font-semibold text-gray-900 uppercase tracking-wider mb-4">Product</h3> |
| <ul class="space-y-2"> |
| <li><a href="#" class="text-gray-600 hover:text-indigo-600">Features</a></li> |
| <li><a href="#" class="text-gray-600 hover:text-indigo-600">Pricing</a></li> |
| <li><a href="#" class="text-gray-600 hover:text-indigo-600">Download</a></li> |
| </ul> |
| </div> |
| <div> |
| <h3 class="text-sm font-semibold text-gray-900 uppercase tracking-wider mb-4">Company</h3> |
| <ul class="space-y-2"> |
| <li><a href="#" class="text-gray-600 hover:text-indigo-600">About</a></li> |
| <li><a href="#" class="text-gray-600 hover:text-indigo-600">Blog</a></li> |
| <li><a href="#" class="text-gray-600 hover:text-indigo-600">Careers</a></li> |
| </ul> |
| </div> |
| <div> |
| <h3 class="text-sm font-semibold text-gray-900 uppercase tracking-wider mb-4">Support</h3> |
| <ul class="space-y-2"> |
| <li><a href="#" class="text-gray-600 hover:text-indigo-600">Help Center</a></li> |
| <li><a href="#" class="text-gray-600 hover:text-indigo-600">Contact</a></li> |
| <li><a href="#" class="text-gray-600 hover:text-indigo-600">Privacy Policy</a></li> |
| </ul> |
| </div> |
| </div> |
| <div class="mt-12 pt-8 border-t border-gray-200"> |
| <p class="text-gray-500 text-sm text-center">© 2023 HabitHero. All rights reserved.</p> |
| </div> |
| </div> |
| </footer> |
|
|
| <script> |
| |
| document.getElementById('mobile-menu-button').addEventListener('click', function() { |
| const menu = document.getElementById('mobile-menu'); |
| menu.classList.toggle('hidden'); |
| }); |
| |
| |
| document.querySelectorAll('a[href^="#"]').forEach(anchor => { |
| anchor.addEventListener('click', function (e) { |
| e.preventDefault(); |
| |
| const targetId = this.getAttribute('href'); |
| if (targetId === '#') return; |
| |
| const targetElement = document.querySelector(targetId); |
| if (targetElement) { |
| targetElement.scrollIntoView({ |
| behavior: 'smooth' |
| }); |
| |
| |
| const mobileMenu = document.getElementById('mobile-menu'); |
| if (!mobileMenu.classList.contains('hidden')) { |
| mobileMenu.classList.add('hidden'); |
| } |
| } |
| }); |
| }); |
| </script> |
| <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Mishak/habithero" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> |
| </html> |