undefined / media.html
ttcgroup's picture
this is good. now flesh out the individual components of the "all in one life orchestrator" so that clicking on the individual boxes brings you to the examples of what that page/feature holds
1e37053 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Media Maestro | CircaSnooze</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.globe.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;
}
.gradient-bg {
background: linear-gradient(135deg, #3a1c71 0%, #d76d77 50%, #ffaf7b 100%);
}
.media-card {
backdrop-filter: blur(10px);
background-color: rgba(255, 255, 255, 0.08);
}
.media-item {
transition: all 0.2s ease;
}
.media-item:hover {
transform: translateY(-2px);
box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.play-btn {
transition: all 0.3s ease;
}
.play-btn:hover {
transform: scale(1.1);
}
</style>
</head>
<body class="min-h-screen text-white gradient-bg" id="vanta-bg">
<div class="container mx-auto px-4 py-8">
<header class="flex justify-between items-center mb-12">
<a href="index.html" class="flex items-center space-x-2">
<i data-feather="moon" class="w-6 h-6"></i>
<span class="text-xl font-bold">CircaSnooze</span>
</a>
<nav class="hidden md:flex space-x-6">
<a href="index.html" class="hover:text-[#FFA07A] transition">Home</a>
<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="#" class="text-[#FFA07A] font-medium">Media</a>
</nav>
<button class="bg-[#FFA07A] px-4 py-2 rounded-lg text-sm font-medium hover:bg-[#ff8a5c] transition">
My Account
</button>
</header>
<main>
<div class="grid lg:grid-cols-3 gap-8 mb-8">
<div class="lg:col-span-2">
<div class="media-card rounded-3xl p-8 mb-8">
<div class="flex justify-between items-center mb-8">
<h1 class="text-3xl font-bold">Media Maestro</h1>
<button class="bg-[#FFA07A] px-4 py-2 rounded-lg font-medium">Create Playlist</button>
</div>
<div class="grid md:grid-cols-2 gap-4 mb-8">
<div class="media-card rounded-xl p-4">
<h3 class="font-medium mb-2">Current Playlist</h3>
<p class="text-2xl font-bold mb-1">Deep Focus</p>
<p class="text-sm opacity-80">12 tracks • 48 min</p>
</div>
<div class="media-card rounded-xl p-4">
<h3 class="font-medium mb-2">Suggested Now</h3>
<p class="text-2xl font-bold mb-1">Afternoon Boost</p>
<p class="text-sm opacity-80">Based on your energy levels</p>
</div>
</div>
<div class="space-y-4">
<div class="media-item media-card rounded-xl p-4 flex items-center">
<div class="w-16 h-16 bg-purple-600 rounded-lg flex items-center justify-center mr-4 overflow-hidden">
<img src="http://static.photos/music/200x200/1" alt="Album cover" class="w-full h-full object-cover">
</div>
<div class="flex-1">
<div class="font-bold">Brain Waves</div>
<div class="text-sm opacity-80">Ambient Focus</div>
</div>
<div class="flex items-center space-x-3">
<div class="text-sm opacity-80">3:42</div>
<button class="play-btn w-10 h-10 rounded-full bg-[#FFA07A] flex items-center justify-center">
<i data-feather="play" class="w-4 h-4"></i>
</button>
</div>
</div>
<div class="media-item media-card rounded-xl p-4 flex items-center">
<div class="w-16 h-16 bg-blue-600 rounded-lg flex items-center justify-center mr-4 overflow-hidden">
<img src="http://static.photos/music/200x200/2" alt="Album cover" class="w-full h-full object-cover">
</div>
<div class="flex-1">
<div class="font-bold">Cognitive Flow</div>
<div class="text-sm opacity-80">Binaural Beats</div>
</div>
<div class="flex items-center space-x-3">
<div class="text-sm opacity-80">5:18</div>
<button class="play-btn w-10 h-10 rounded-full bg-[#FFA07A] flex items-center justify-center">
<i data-feather="play" class="w-4 h-4"></i>
</button>
</div>
</div>
<div class="media-item media-card rounded-xl p-4 flex items-center">
<div class="w-16 h-16 bg-green-600 rounded-lg flex items-center justify-center mr-4 overflow-hidden">
<img src="http://static.photos/music/200x200/3" alt="Album cover" class="w-full h-full object-cover">
</div>
<div class="flex-1">
<div class="font-bold">Alpha State</div>
<div class="text-sm opacity-80">Meditation</div>
</div>
<div class="flex items-center space-x-3">
<div class="text-sm opacity-80">8:24</div>
<button class="play-btn w-10 h-10 rounded-full bg-[#FFA07A] flex items-center justify-center">
<i data-feather="play" class="w-4 h-4"></i>
</button>
</div>
</div>
</div>
</div>
<div class="media-card rounded-3xl p-8">
<h2 class="text-2xl font-bold mb-6">Media For Your Current State</h2>
<div class="grid md:grid-cols-2 gap-4">
<div class="media-card rounded-xl p-4">
<div class="flex items-center mb-3">
<div class="w-10 h-10 rounded-lg bg-purple-600 flex items-center justify-center mr-3">
<i data-feather="music" class="w-5 h-5"></i>
</div>
<div>
<div class="font-bold">Focus Playlist</div>
<div class="text-xs opacity-80">For deep work</div>
</div>
</div>
<p class="text-sm opacity-80">Algorithmically selected tracks to enhance concentration during your peak focus hours.</p>
</div>
<div class="media-card rounded-xl p-4">
<div class="flex items-center mb-3">
<div class="w-10 h-10 rounded-lg bg-blue-600 flex items-center justify-center mr-3">
<i data-feather="headphones" class="w-5 h-5"></i>
</div>
<div>
<div class="font-bold">Wind Down</div>
<div class="text-xs opacity-80">For relaxation</div>
</div>
</div>
<p class="text-sm opacity-80">Gentle melodies to transition from work to relaxation in your evening routine.</p>
</div>
</div>
</div>
</div>
<div>
<div class="media-card rounded-3xl p-8 mb-8">
<h2 class="text-2xl font-bold mb-6">Your Playlists</h2>
<div class="space-y-4">
<div class="media-item media-card rounded-xl p-4 flex items-center">
<div class="w-12 h-12 bg-purple-600 rounded-lg flex items-center justify-center mr-3">
<i data-feather="music" class="w-5 h-5"></i>
</div>
<div>
<div class="font-medium">Morning Energy</div>
<div class="text-xs opacity-80">8 tracks • 32 min</div>
</div>
</div>
<div class="media-item media-card rounded-xl p-4 flex items-center">
<div class="w-12 h-12 bg-blue-600 rounded-lg flex items-center justify-center mr-3">
<i data-feather="music" class="w-5 h-5"></i>
</div>
<div>
<div class="font-medium">Deep Focus</div>
<div class="text-xs opacity-80">12 tracks • 48 min</div>
</div>
</div>
<div class="media-item media-card rounded-xl p-4 flex items-center">
<div class="w-12 h-12 bg-green-600 rounded-lg flex items-center justify-center mr-3">
<i data-feather="music" class="w-5 h-5"></i>
</div>
<div>
<div class="font-medium">Sleep Sounds</div>
<div class="text-xs opacity-80">6 tracks • 45 min</div>
</div>
</div>
<div class="media-item media-card rounded-xl p-4 flex items-center">
<div class="w-12 h-12 bg-yellow-600 rounded-lg flex items-center justify-center mr-3">
<i data-feather="music" class="w-5 h-5"></i>
</div>
<div>
<div class="font-medium">Creative Flow</div>
<div class="text-xs opacity-80">10 tracks • 42 min</div>
</div>
</div>
<button class="w-full border border-dashed border-white/30 py-3 rounded-lg flex items-center justify-center text-sm hover:bg-white/10 transition">
<i data-feather="plus" class="w-4 h-4 mr-2"></i>
New Playlist
</button>
</div>
</div>
<div class="media-card rounded-3xl p-8">
<h2 class="text-2xl font-bold mb-6">Podcast Picks</h2>
<div class="space-y-4">
<div class="media-item media-card rounded-xl p-4">
<div class="flex items-start mb-3">
<div class="w-10 h-10 rounded-lg bg-purple-600 flex items-center justify-center mr-3">
<i data-feather="mic" class="w-5 h-5"></i>
</div>
<div>
<div class="font-bold">Huberman Lab</div>
<div class="text-xs opacity-80">Sleep Optimization</div>
</div>
</div>
<p class="text-sm opacity-80 mb-3">Neuroscientist Andrew Huberman discusses optimal sleep protocols.</p>
<button class="text-[#FFA07A] text-sm font-medium">Listen Now</button>
</div>
<div class="media-item media-card rounded-xl p-4">
<div class="flex items-start mb-3">
<div class="w-10 h-10 rounded-lg bg-blue-600 flex items-center justify-center mr-3">
<i data-feather="mic" class="w-5 h-5"></i>
</div>
<div>
<div class="font-bold">The Productivity Show</div>
<div class="text-xs opacity-80">Time Blocking</div>
</div>
</div>
<p class="text-sm opacity-80 mb-3">How to structure your day for maximum productivity using time blocking.</p>
<button class="text-[#FFA07A] text-sm font-medium">Listen Now</button>
</div>
</div>
</div>
</div>
</div>
</main>
<footer class="border-t border-white/20 mt-12 pt-8 pb-12">
<div class="text-center opacity-70 text-sm">
© 2023 CircaSnooze. All rights reserved.
</div>
</footer>
</div>
<script>
// Initialize Vanta.js background
VANTA.GLOBE({
el: "#vanta-bg",
mouseControls: true,
touchControls: true,
gyroControls: false,
minHeight: 200.00,
minWidth: 200.00,
scale: 1.00,
scaleMobile: 1.00,
color: 0xffa07a,
backgroundColor: 0x1a1b2f,
size: 0.60
});
// Initialize feather icons
feather.replace();
</script>
</body>
</html>