File size: 15,582 Bytes
1e37053 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 | <!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> |