undefined / index.html
ttcgroup's picture
add a google sign in option on the landing page, make the "add task" (in the task section) and "add event" (in the schedule section) actually add the input to the tasks/schedule respectively and allow reminders/alarms to be set. Make the "add resource" (in the research section), actually add the resource link and let the user click on any of the bookmarks to open the url in their native browser. also allow the ai to pick up on patterns in the users behavior to create articles/video/sites that align with their interests and introduce them at the top of the research section, in a dashboard format.
3200020 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CircaSnooze | Optimize Your Rhythm</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.waves.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/animejs@3.2.1/lib/anime.min.js"></script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Space Grotesk', sans-serif;
color: #FFA07A;
}
.gradient-bg {
background: linear-gradient(135deg, #2b5876 0%, #4e4376 100%);
}
.pulse {
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.5; }
}
.glow-hover:hover {
filter: drop-shadow(0 0 8px rgba(118, 75, 162, 0.6));
}
.circa-card {
backdrop-filter: blur(10px);
background-color: rgba(255, 255, 255, 0.08);
}
</style>
</head>
<body class="min-h-screen text-white gradient-bg" id="vanta-bg">
<div class="container mx-auto px-4 py-8">
<!-- Header -->
<header class="flex justify-between items-center mb-12">
<div class="flex items-center space-x-2">
<i data-feather="moon" class="w-8 h-8"></i>
<h1 class="text-3xl font-bold">CircaSnooze</h1>
</div>
<nav class="hidden md:flex space-x-8">
<a href="sleep-calculator.html" class="hover:text-[#FFA07A] transition">Sleep</a>
<a href="scheduling.html" class="hover:text-[#FFA07A] transition">Schedule</a>
<a href="tasks.html" class="hover:text-[#FFA07A] transition">Tasks</a>
<a href="research.html" class="hover:text-[#FFA07A] transition">Research</a>
</nav>
<button class="md:hidden">
<i data-feather="menu" class="w-6 h-6"></i>
</button>
</header>
<!-- Hero Section -->
<section class="mb-20">
<div class="grid grid-cols-1 lg:grid-cols-2 gap-12 items-center">
<div>
<h2 class="text-4xl md:text-5xl font-bold mb-6">Sync With Your <span class="text-purple-300">Circadian Rhythm</span></h2>
<p class="text-lg mb-8 opacity-90">Optimize your sleep, supercharge your productivity, and unlock your natural biological potential with our AI-powered lifestyle orchestration.</p>
<div class="flex space-x-4">
<button onclick="location.href='sleep-calculator.html'" class="bg-[#4e4376] text-[#FFA07A] px-6 py-3 rounded-full font-semibold hover:bg-[#3a2a7a] transition glow-hover">
Start Sleeping Better
</button>
<button onclick="location.href='#features'" class="border border-[#FFA07A] text-[#FFA07A] px-6 py-3 rounded-full font-semibold hover:bg-[#4e4376] transition">
Explore Features
</button>
</div>
</div>
<div class="relative">
<div class="circa-card rounded-3xl p-8 shadow-2xl">
<div class="flex justify-between mb-6">
<h3 class="text-xl font-semibold">Sleep Calculator</h3>
<div class="flex space-x-2">
<button class="bg-purple-600 px-3 py-1 rounded-full text-sm">Sleep</button>
<button class="px-3 py-1 rounded-full text-sm hover:bg-white/10">Wake</button>
</div>
</div>
<div class="mb-6">
<label class="block mb-2">I want to</label>
<select class="w-full bg-white/10 border border-white/20 rounded-lg px-4 py-3 mb-4">
<option>Fall asleep at...</option>
<option>Wake up at...</option>
</select>
<div class="flex items-center">
<input type="time" class="bg-white/10 border border-white/20 rounded-lg px-4 py-3 w-full">
<button class="ml-2 bg-purple-600 p-3 rounded-lg">
<i data-feather="chevron-right" class="w-5 h-5"></i>
</button>
</div>
</div>
<div class="bg-purple-700/50 rounded-xl p-4">
<div class="flex items-center mb-2">
<i data-feather="clock" class="mr-2"></i>
<span class="font-medium">Sleep Windows</span>
</div>
<div class="grid grid-cols-3 gap-2 text-center">
<div class="bg-purple-900/50 rounded-lg py-2 px-1">
<div class="text-xs">10:30 PM</div>
<div class="text-xs opacity-70">5 cycles</div>
</div>
<div class="bg-purple-600 rounded-lg py-2 px-1">
<div class="text-xs">12:00 AM</div>
<div class="text-xs opacity-70">4.5 cycles</div>
</div>
<div class="bg-purple-900/50 rounded-lg py-2 px-1">
<div class="text-xs">1:30 AM</div>
<div class="text-xs opacity-70">4 cycles</div>
</div>
</div>
</div>
</div>
<div class="absolute -z-10 top-4 left-4 w-full h-full rounded-3xl border-2 border-white/20"></div>
</div>
</div>
</section>
<!-- Features Grid -->
<section class="mb-20">
<h2 class="text-3xl font-bold mb-12 text-center">Your All-In-One <span class="text-purple-300">Life Orchestrator</span></h2>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- Feature 1 -->
<a href="scheduling.html" class="circa-card rounded-2xl p-6 hover:bg-white/10 transition">
<div class="w-12 h-12 rounded-lg bg-purple-600 flex items-center justify-center mb-4">
<i data-feather="clock" class="w-6 h-6"></i>
</div>
<h3 class="text-xl font-semibold mb-3">Smart Scheduling</h3>
<p class="opacity-80">AI-powered calendar that understands your rhythms and optimizes your time.</p>
</a>
<!-- Feature 2 -->
<a href="tasks.html" class="circa-card rounded-2xl p-6 hover:bg-white/10 transition">
<div class="w-12 h-12 rounded-lg bg-pink-600 flex items-center justify-center mb-4">
<i data-feather="check-circle" class="w-6 h-6"></i>
</div>
<h3 class="text-xl font-semibold mb-3">Task Genius</h3>
<p class="opacity-80">Never forget a task with our predictive reminder system and behavior analysis.</p>
</a>
<!-- Feature 3 -->
<a href="research.html" class="circa-card rounded-2xl p-6 hover:bg-white/10 transition">
<div class="w-12 h-12 rounded-lg bg-blue-600 flex items-center justify-center mb-4">
<i data-feather="bookmark" class="w-6 h-6"></i>
</div>
<h3 class="text-xl font-semibold mb-3">Research Hub</h3>
<p class="opacity-80">Organize bookmarks, notes, and files with intelligent tagging and search.</p>
</a>
<!-- Feature 4 -->
<a href="media.html" class="circa-card rounded-2xl p-6 hover:bg-white/10 transition">
<div class="w-12 h-12 rounded-lg bg-green-600 flex items-center justify-center mb-4">
<i data-feather="music" class="w-6 h-6"></i>
</div>
<h3 class="text-xl font-semibold mb-3">Media Maestro</h3>
<p class="opacity-80">Create playlists for focus, relaxation, or sleep with our biorhythm-aware suggestions.</p>
</a>
<!-- Feature 5 -->
<a href="assistant.html" class="circa-card rounded-2xl p-6 hover:bg-white/10 transition">
<div class="w-12 h-12 rounded-lg bg-yellow-600 flex items-center justify-center mb-4">
<i data-feather="zap" class="w-6 h-6"></i>
</div>
<h3 class="text-xl font-semibold mb-3">AI Assistant</h3>
<p class="opacity-80">Get personalized advice for productivity, health, shopping and problem solving.</p>
</a>
<!-- Feature 6 -->
<a href="patterns.html" class="circa-card rounded-2xl p-6 hover:bg-white/10 transition">
<div class="w-12 h-12 rounded-lg bg-red-600 flex items-center justify-center mb-4">
<i data-feather="activity" class="w-6 h-6"></i>
</div>
<h3 class="text-xl font-semibold mb-3">Pattern Finder</h3>
<p class="opacity-80">Discover behavior patterns and get insights to optimize your daily routines.</p>
</a>
</div>
</section>
<!-- Wake Up Experience -->
<section class="mb-20">
<div class="circa-card rounded-3xl p-8 md:p-12 overflow-hidden">
<div class="grid md:grid-cols-2 gap-12 items-center">
<div>
<h2 class="text-3xl font-bold mb-6">Gentle <span class="text-purple-300">Wake-Up Experience</span></h2>
<p class="text-lg mb-6 opacity-90">Our circadian-aware alarm gradually increases in volume and light to wake you at the optimal point in your sleep cycle.</p>
<ul class="space-y-3 mb-8">
<li class="flex items-start">
<i data-feather="check-circle" class="text-green-400 mr-2 mt-1"></i>
<span>Wake at the lightest sleep phase</span>
</li>
<li class="flex items-start">
<i data-feather="check-circle" class="text-green-400 mr-2 mt-1"></i>
<span>Customizable sunrise simulation</span>
</li>
<li class="flex items-start">
<i data-feather="check-circle" class="text-green-400 mr-2 mt-1"></i>
<span>Personalized morning playlist</span>
</li>
</ul>
<button class="bg-purple-600 px-6 py-3 rounded-full font-semibold hover:bg-purple-700 transition glow-hover">
Try Smart Alarm
</button>
</div>
<div class="relative">
<div class="bg-purple-900/50 rounded-2xl p-6">
<div class="flex items-center justify-between mb-6">
<h3 class="font-medium">Morning Routine</h3>
<div class="flex items-center text-xs">
<i data-feather="sun" class="w-4 h-4 mr-1"></i>
<span>Sunrise Mode</span>
</div>
</div>
<div class="space-y-4 mb-6">
<div class="flex items-center justify-between">
<div class="flex items-center">
<div class="w-10 h-10 rounded-full bg-purple-600 flex items-center justify-center mr-3">
<i data-feather="sunrise" class="w-5 h-5"></i>
</div>
<div>
<div class="font-medium">Light Therapy</div>
<div class="text-xs opacity-70">Gradual brightening</div>
</div>
</div>
<div class="text-sm">6:15 AM</div>
</div>
<div class="flex items-center justify-between">
<div class="flex items-center">
<div class="w-10 h-10 rounded-full bg-blue-600 flex items-center justify-center mr-3">
<i data-feather="music" class="w-5 h-5"></i>
</div>
<div>
<div class="font-medium">Morning Playlist</div>
<div class="text-xs opacity-70">Chill Vibes</div>
</div>
</div>
<div class="text-sm">6:30 AM</div>
</div>
<div class="flex items-center justify-between">
<div class="flex items-center">
<div class="w-10 h-10 rounded-full bg-green-600 flex items-center justify-center mr-3">
<i data-feather="coffee" class="w-5 h-5"></i>
</div>
<div>
<div class="font-medium">Hydration Reminder</div>
<div class="text-xs opacity-70">Water first!</div>
</div>
</div>
<div class="text-sm">6:45 AM</div>
</div>
</div>
<div class="flex justify-between items-center">
<div class="text-sm opacity-70">Tomorrow's forecast: Sunny</div>
<button class="bg-white text-purple-800 px-4 py-2 rounded-lg text-sm font-medium">
Customize
</button>
</div>
</div>
<div class="absolute -z-10 top-4 left-4 w-full h-full rounded-2xl border-2 border-white/20"></div>
</div>
</div>
</div>
</section>
<!-- CTA -->
<section class="text-center mb-20">
<h2 class="text-3xl font-bold mb-6">Ready to <span class="text-purple-300">Transform Your Rhythm</span>?</h2>
<p class="text-xl mb-8 max-w-2xl mx-auto opacity-90">Join thousands who've optimized their sleep, supercharged their productivity, and taken control of their daily flow.</p>
<button class="bg-white text-purple-800 px-8 py-4 rounded-full font-bold hover:bg-purple-100 transition text-lg glow-hover">
Get Started - It's Free
</button>
</section>
<!-- Footer -->
<footer class="border-t border-white/20 pt-8 pb-12">
<div class="grid md:grid-cols-4 gap-8 mb-8">
<div>
<div class="flex items-center space-x-2 mb-4">
<i data-feather="moon" class="w-6 h-6"></i>
<h3 class="text-xl font-bold">CircaSnooze</h3>
</div>
<p class="opacity-80">Your circadian rhythm optimization platform.</p>
</div>
<div>
<h4 class="font-semibold mb-4">Product</h4>
<ul class="space-y-2">
<li><a href="#" class="hover:text-purple-200 transition">Features</a></li>
<li><a href="#" class="hover:text-purple-200 transition">Pricing</a></li>
<li><a href="#" class="hover:text-purple-200 transition">Apps</a></li>
<li><a href="#" class="hover:text-purple-200 transition">Integrations</a></li>
</ul>
</div>
<div>
<h4 class="font-semibold mb-4">Resources</h4>
<ul class="space-y-2">
<li><a href="#" class="hover:text-purple-200 transition">Blog</a></li>
<li><a href="#" class="hover:text-purple-200 transition">Guides</a></li>
<li><a href="#" class="hover:text-purple-200 transition">Support</a></li>
<li><a href="#" class="hover:text-purple-200 transition">API</a></li>
</ul>
</div>
<div>
<h4 class="font-semibold mb-4">Company</h4>
<ul class="space-y-2">
<li><a href="#" class="hover:text-purple-200 transition">About</a></li>
<li><a href="#" class="hover:text-purple-200 transition">Careers</a></li>
<li><a href="#" class="hover:text-purple-200 transition">Privacy</a></li>
<li><a href="#" class="hover:text-purple-200 transition">Terms</a></li>
</ul>
</div>
</div>
<div class="flex flex-col md:flex-row justify-between items-center pt-6 border-t border-white/10">
<p class="mb-4 md:mb-0 opacity-70">© 2023 CircaSnooze. All rights reserved.</p>
<div class="flex space-x-6">
<a href="#"><i data-feather="twitter" class="w-5 h-5 hover:text-purple-200 transition"></i></a>
<a href="#"><i data-feather="instagram" class="w-5 h-5 hover:text-purple-200 transition"></i></a>
<a href="#"><i data-feather="facebook" class="w-5 h-5 hover:text-purple-200 transition"></i></a>
<a href="#"><i data-feather="github" class="w-5 h-5 hover:text-purple-200 transition"></i></a>
</div>
</div>
</footer>
</div>
<script>
// Google Sign-In Handler
function handleGoogleSignIn() {
// In production, use Google OAuth API
console.log("Google sign-in initiated");
// Mock implementation for demo
alert("Google sign-in would be implemented here");
}
// Initialize Vanta.js background
VANTA.WAVES({
el: "#vanta-bg",
mouseControls: true,
touchControls: true,
gyroControls: false,
minHeight: 200.00,
minWidth: 200.00,
scale: 1.00,
scaleMobile: 1.00,
color: 0x2b5876,
shininess: 35.00,
waveHeight: 15.00,
waveSpeed: 0.85,
zoom: 0.85
});
// Initialize feather icons
feather.replace();
// Simple animation for features on scroll
document.addEventListener('DOMContentLoaded', function() {
anime({
targets: '.circa-card',
translateY: [20, 0],
opacity: [0, 1],
delay: anime.stagger(100),
easing: 'easeOutExpo'
});
});
</script>
</body>
</html>