odedelen's picture
create the Get Started page.
fa25a93 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Get Started | Longevity Labs & Lifestyle Hub</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
</head>
<body class="bg-gray-50">
<custom-navbar></custom-navbar>
<main class="container mx-auto px-4 py-12">
<div class="max-w-4xl mx-auto">
<!-- Progress Steps -->
<div class="flex justify-between mb-12 relative">
<div class="flex flex-col items-center z-10">
<div class="w-12 h-12 bg-indigo-600 rounded-full flex items-center justify-center text-white font-bold mb-2">1</div>
<span class="font-medium text-indigo-600">Your Goals</span>
</div>
<div class="flex flex-col items-center z-10">
<div class="w-12 h-12 bg-indigo-100 rounded-full flex items-center justify-center text-gray-600 font-bold mb-2">2</div>
<span class="font-medium text-gray-500">Health Profile</span>
</div>
<div class="flex flex-col items-center z-10">
<div class="w-12 h-12 bg-indigo-100 rounded-full flex items-center justify-center text-gray-600 font-bold mb-2">3</div>
<span class="font-medium text-gray-500">Test Selection</span>
</div>
<div class="flex flex-col items-center z-10">
<div class="w-12 h-12 bg-indigo-100 rounded-full flex items-center justify-center text-gray-600 font-bold mb-2">4</div>
<span class="font-medium text-gray-500">Checkout</span>
</div>
<div class="absolute top-6 left-0 right-0 h-1 bg-gray-200 mx-12"></div>
<div class="absolute top-6 left-0 h-1 bg-indigo-600 mx-12" style="width: 25%"></div>
</div>
<!-- Step 1: Goals Form -->
<div class="bg-white rounded-xl shadow-md p-8 mb-8">
<h2 class="text-2xl font-bold mb-6 text-indigo-700">What are your longevity goals?</h2>
<div class="grid md:grid-cols-2 gap-6 mb-8">
<div class="border-2 border-gray-200 rounded-lg p-6 hover:border-indigo-400 transition duration-200 cursor-pointer">
<div class="flex items-start mb-4">
<input type="radio" name="goal" id="goal-optimization" class="mt-1 mr-3">
<label for="goal-optimization" class="font-medium">Performance Optimization</label>
</div>
<p class="text-gray-600 text-sm">Enhanced cognitive function, energy, and physical performance</p>
</div>
<div class="border-2 border-gray-200 rounded-lg p-6 hover:border-indigo-400 transition duration-200 cursor-pointer">
<div class="flex items-start mb-4">
<input type="radio" name="goal" id="goal-aging" class="mt-1 mr-3">
<label for="goal-aging" class="font-medium">Aging Well</label>
</div>
<p class="text-gray-600 text-sm">Slow biological aging and maintain vitality</p>
</div>
<div class="border-2 border-gray-200 rounded-lg p-6 hover:border-indigo-400 transition duration-200 cursor-pointer">
<div class="flex items-start mb-4">
<input type="radio" name="goal" id="goal-recovery" class="mt-1 mr-3">
<label for="goal-recovery" class="font-medium">Recovery & Resilience</label>
</div>
<p class="text-gray-600 text-sm">Improve stress resilience and recovery capacity</p>
</div>
<div class="border-2 border-gray-200 rounded-lg p-6 hover:border-indigo-400 transition duration-200 cursor-pointer">
<div class="flex items-start mb-4">
<input type="radio" name="goal" id="goal-weight" class="mt-1 mr-3">
<label for="goal-weight" class="font-medium">Metabolic Health</label>
</div>
<p class="text-gray-600 text-sm">Optimize weight, blood sugar, and metabolic function</p>
</div>
</div>
<div class="mb-8">
<h3 class="font-medium mb-3">What areas would you like to focus on? (Select all that apply)</h3>
<div class="flex flex-wrap gap-3">
<span class="bg-gray-100 text-gray-800 px-4 py-2 rounded-full text-sm cursor-pointer hover:bg-indigo-100">Energy Levels</span>
<span class="bg-gray-100 text-gray-800 px-4 py-2 rounded-full text-sm cursor-pointer hover:bg-indigo-100">Sleep Quality</span>
<span class="bg-gray-100 text-gray-800 px-4 py-2 rounded-full text-sm cursor-pointer hover:bg-indigo-100">Brain Function</span>
<span class="bg-gray-100 text-gray-800 px-4 py-2 rounded-full text-sm cursor-pointer hover:bg-indigo-100">Hormone Balance</span>
<span class="bg-gray-100 text-gray-800 px-4 py-2 rounded-full text-sm cursor-pointer hover:bg-indigo-100">Muscle Growth</span>
<span class="bg-gray-100 text-gray-800 px-4 py-2 rounded-full text-sm cursor-pointer hover:bg-indigo-100">Gut Health</span>
<span class="bg-gray-100 text-gray-800 px-4 py-2 rounded-full text-sm cursor-pointer hover:bg-indigo-100">Stress Management</span>
<span class="bg-gray-100 text-gray-800 px-4 py-2 rounded-full text-sm cursor-pointer hover:bg-indigo-100">Inflammation</span>
</div>
</div>
<div class="flex justify-between mt-8">
<div></div>
<a href="get-started-step2.html" class="bg-indigo-600 hover:bg-indigo-700 text-white px-6 py-3 rounded-lg font-medium transition duration-300">Continue to Health Profile <i data-feather="arrow-right" class="inline ml-2"></i></a>
</div>
</div>
<div class="bg-indigo-50 rounded-xl p-6 text-center">
<h3 class="font-medium mb-2">Not sure what you need?</h3>
<p class="text-gray-600 mb-4">Take our 2-minute assessment to get personalized recommendations</p>
<a href="#" class="text-indigo-600 font-medium hover:underline">Start Assessment <i data-feather="arrow-right" class="inline ml-1"></i></a>
</div>
</div>
</main>
<custom-footer></custom-footer>
<script>
feather.replace();
</script>
<script src="script.js"></script>
</body>
</html>