Spaces:
Running
Running
File size: 19,382 Bytes
c915f68 9a333ba |
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 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 |
<!DOCTYPE html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sonora | Premium Sound Library</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Inter', sans-serif;
background-color: #0a0a0a;
color: #f5f5f5;
}
.gradient-text {
background: linear-gradient(90deg, #8b5cf6 0%, #ec4899 100%);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.player-container {
backdrop-filter: blur(16px);
background-color: rgba(10, 10, 10, 0.8);
}
.sound-card:hover {
transform: translateY(-4px);
box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}
.nav-item:hover {
background-color: rgba(255, 255, 255, 0.05);
}
</style>
</head>
<body class="min-h-screen flex flex-col">
<!-- Navigation -->
<nav class="border-b border-gray-800 py-4 px-6 sticky top-0 z-50 bg-black bg-opacity-90">
<div class="max-w-7xl mx-auto flex justify-between items-center">
<div class="flex items-center space-x-8">
<a href="#" class="text-2xl font-bold gradient-text">SONORA</a>
<div class="hidden md:flex space-x-6">
<a href="#" class="nav-item px-3 py-2 rounded-lg flex items-center space-x-2 transition-all">
<i data-feather="trending-up" class="w-5 h-5"></i>
<span>Trending</span>
</a>
<a href="#" class="nav-item px-3 py-2 rounded-lg flex items-center space-x-2 transition-all">
<i data-feather="music" class="w-5 h-5"></i>
<span>Sound Packs</span>
</a>
<a href="#" class="nav-item px-3 py-2 rounded-lg flex items-center space-x-2 transition-all">
<i data-feather="bookmark" class="w-5 h-5"></i>
<span>Library</span>
</a>
</div>
</div>
<div class="flex items-center space-x-4">
<div class="relative">
<input type="text" placeholder="Search sounds..." class="bg-gray-900 rounded-full py-2 px-4 pl-10 w-40 md:w-64 focus:outline-none focus:ring-2 focus:ring-purple-500">
<i data-feather="search" class="absolute left-3 top-2.5 text-gray-400"></i>
</div>
<button class="p-2 rounded-full bg-gray-800 hover:bg-gray-700 transition-all">
<i data-feather="user" class="w-5 h-5"></i>
</button>
<button class="p-2 rounded-full bg-gray-800 hover:bg-gray-700 transition-all">
<i data-feather="settings" class="w-5 h-5"></i>
</button>
</div>
</div>
</nav>
<!-- Mobile Navigation -->
<div class="md:hidden fixed bottom-0 left-0 right-0 bg-black bg-opacity-90 border-t border-gray-800 z-40">
<div class="flex justify-around py-3">
<a href="#" class="flex flex-col items-center text-xs">
<i data-feather="home" class="w-5 h-5 mb-1"></i>
<span>Home</span>
</a>
<a href="#" class="flex flex-col items-center text-xs">
<i data-feather="trending-up" class="w-5 h-5 mb-1"></i>
<span>Trending</span>
</a>
<a href="#" class="flex flex-col items-center text-xs">
<i data-feather="search" class="w-5 h-5 mb-1"></i>
<span>Search</span>
</a>
<a href="#" class="flex flex-col items-center text-xs">
<i data-feather="bookmark" class="w-5 h-5 mb-1"></i>
<span>Library</span>
</a>
<a href="#" class="flex flex-col items-center text-xs">
<i data-feather="user" class="w-5 h-5 mb-1"></i>
<span>Profile</span>
</a>
</div>
</div>
<!-- Main Content -->
<main class="flex-grow pb-24 md:pb-20">
<!-- Hero Section -->
<section class="py-12 px-6" data-aos="fade-in">
<div class="max-w-7xl mx-auto">
<h1 class="text-4xl md:text-6xl font-bold mb-6">Discover <span class="gradient-text">Premium Sounds</span></h1>
<p class="text-gray-400 text-lg md:text-xl max-w-2xl mb-8">Explore our curated collection of high-quality sound samples, loops, and packs from top producers worldwide.</p>
<div class="flex space-x-4">
<button class="bg-gradient-to-r from-purple-600 to-pink-600 px-6 py-3 rounded-full font-medium hover:opacity-90 transition-all">Browse Packs</button>
<button class="border border-gray-700 px-6 py-3 rounded-full font-medium hover:bg-gray-800 transition-all">Learn More</button>
</div>
</div>
</section>
<!-- Trending Packs -->
<section class="py-12 px-6" data-aos="fade-up">
<div class="max-w-7xl mx-auto">
<div class="flex justify-between items-center mb-8">
<h2 class="text-2xl font-bold">Trending Sound Packs</h2>
<a href="#" class="text-purple-500 hover:text-purple-400 flex items-center">
<span>View All</span>
<i data-feather="chevron-right" class="w-5 h-5 ml-1"></i>
</a>
</div>
<div class="grid grid-cols-2 md:grid-cols-4 gap-6">
<!-- Pack 1 -->
<div class="sound-card bg-gray-900 rounded-xl p-4 transition-all duration-300 cursor-pointer">
<div class="relative overflow-hidden rounded-lg aspect-square mb-4">
<img src="http://static.photos/music/640x360/1" alt="Pack Cover" class="w-full h-full object-cover">
<div class="absolute inset-0 bg-gradient-to-t from-black/80 to-transparent flex items-end p-4">
<button class="bg-purple-600 rounded-full p-3 hover:bg-purple-700 transition-all">
<i data-feather="play" class="w-5 h-5"></i>
</button>
</div>
</div>
<h3 class="font-semibold">Urban Beats</h3>
<p class="text-gray-400 text-sm">by Studio Waves</p>
</div>
<!-- Pack 2 -->
<div class="sound-card bg-gray-900 rounded-xl p-4 transition-all duration-300 cursor-pointer">
<div class="relative overflow-hidden rounded-lg aspect-square mb-4">
<img src="http://static.photos/music/640x360/2" alt="Pack Cover" class="w-full h-full object-cover">
<div class="absolute inset-0 bg-gradient-to-t from-black/80 to-transparent flex items-end p-4">
<button class="bg-purple-600 rounded-full p-3 hover:bg-purple-700 transition-all">
<i data-feather="play" class="w-5 h-5"></i>
</button>
</div>
</div>
<h3 class="font-semibold">Cinematic Strings</h3>
<p class="text-gray-400 text-sm">by Orchestral Tools</p>
</div>
<!-- Pack 3 -->
<div class="sound-card bg-gray-900 rounded-xl p-4 transition-all duration-300 cursor-pointer">
<div class="relative overflow-hidden rounded-lg aspect-square mb-4">
<img src="http://static.photos/music/640x360/3" alt="Pack Cover" class="w-full h-full object-cover">
<div class="absolute inset-0 bg-gradient-to-t from-black/80 to-transparent flex items-end p-4">
<button class="bg-purple-600 rounded-full p-3 hover:bg-purple-700 transition-all">
<i data-feather="play" class="w-5 h-5"></i>
</button>
</div>
</div>
<h3 class="font-semibold">Analog Synths</h3>
<p class="text-gray-400 text-sm">by Retro Sounds</p>
</div>
<!-- Pack 4 -->
<div class="sound-card bg-gray-900 rounded-xl p-4 transition-all duration-300 cursor-pointer">
<div class="relative overflow-hidden rounded-lg aspect-square mb-4">
<img src="http://static.photos/music/640x360/4" alt="Pack Cover" class="w-full h-full object-cover">
<div class="absolute inset-0 bg-gradient-to-t from-black/80 to-transparent flex items-end p-4">
<button class="bg-purple-600 rounded-full p-3 hover:bg-purple-700 transition-all">
<i data-feather="play" class="w-5 h-5"></i>
</button>
</div>
</div>
<h3 class="font-semibold">Tropical House</h3>
<p class="text-gray-400 text-sm">by Island Beats</p>
</div>
</div>
</div>
</section>
<!-- New Releases -->
<section class="py-12 px-6" data-aos="fade-up">
<div class="max-w-7xl mx-auto">
<div class="flex justify-between items-center mb-8">
<h2 class="text-2xl font-bold">New Releases</h2>
<a href="#" class="text-purple-500 hover:text-purple-400 flex items-center">
<span>View All</span>
<i data-feather="chevron-right" class="w-5 h-5 ml-1"></i>
</a>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-6">
<!-- Release 1 -->
<div class="sound-card bg-gray-900 rounded-xl p-4 transition-all duration-300 cursor-pointer">
<div class="relative overflow-hidden rounded-lg aspect-video mb-4">
<img src="http://static.photos/music/640x360/5" alt="Release Cover" class="w-full h-full object-cover">
<div class="absolute inset-0 bg-gradient-to-t from-black/80 to-transparent flex items-end p-4">
<button class="bg-purple-600 rounded-full p-3 hover:bg-purple-700 transition-all">
<i data-feather="play" class="w-5 h-5"></i>
</button>
</div>
</div>
<h3 class="font-semibold">Ambient Dreams</h3>
<p class="text-gray-400 text-sm mb-2">by Soundscape Collective</p>
<div class="flex justify-between text-xs text-gray-500">
<span>24 Samples</span>
<span>2.4 GB</span>
</div>
</div>
<!-- Release 2 -->
<div class="sound-card bg-gray-900 rounded-xl p-4 transition-all duration-300 cursor-pointer">
<div class="relative overflow-hidden rounded-lg aspect-video mb-4">
<img src="http://static.photos/music/640x360/6" alt="Release Cover" class="w-full h-full object-cover">
<div class="absolute inset-0 bg-gradient-to-t from-black/80 to-transparent flex items-end p-4">
<button class="bg-purple-600 rounded-full p-3 hover:bg-purple-700 transition-all">
<i data-feather="play" class="w-5 h-5"></i>
</button>
</div>
</div>
<h3 class="font-semibold">808 Revolution</h3>
<p class="text-gray-400 text-sm mb-2">by Bass Masters</p>
<div class="flex justify-between text-xs text-gray-500">
<span>36 Samples</span>
<span>1.8 GB</span>
</div>
</div>
<!-- Release 3 -->
<div class="sound-card bg-gray-900 rounded-xl p-4 transition-all duration-300 cursor-pointer">
<div class="relative overflow-hidden rounded-lg aspect-video mb-4">
<img src="http://static.photos/music/640x360/7" alt="Release Cover" class="w-full h-full object-cover">
<div class="absolute inset-0 bg-gradient-to-t from-black/80 to-transparent flex items-end p-4">
<button class="bg-purple-600 rounded-full p-3 hover:bg-purple-700 transition-all">
<i data-feather="play" class="w-5 h-5"></i>
</button>
</div>
</div>
<h3 class="font-semibold">Jazz Essentials</h3>
<p class="text-gray-400 text-sm mb-2">by Blue Note Labs</p>
<div class="flex justify-between text-xs text-gray-500">
<span>42 Samples</span>
<span>3.2 GB</span>
</div>
</div>
</div>
</div>
</section>
<!-- Categories -->
<section class="py-12 px-6" data-aos="fade-up">
<div class="max-w-7xl mx-auto">
<h2 class="text-2xl font-bold mb-8">Browse Categories</h2>
<div class="grid grid-cols-2 md:grid-cols-4 lg:grid-cols-6 gap-4">
<a href="#" class="bg-gray-900 hover:bg-gray-800 rounded-lg p-4 flex flex-col items-center transition-all">
<i data-feather="drum" class="w-8 h-8 mb-2 text-purple-500"></i>
<span>Drums</span>
</a>
<a href="#" class="bg-gray-900 hover:bg-gray-800 rounded-lg p-4 flex flex-col items-center transition-all">
<i data-feather="mic" class="w-8 h-8 mb-2 text-purple-500"></i>
<span>Vocals</span>
</a>
<a href="#" class="bg-gray-900 hover:bg-gray-800 rounded-lg p-4 flex flex-col items-center transition-all">
<i data-feather="music" class="w-8 h-8 mb-2 text-purple-500"></i>
<span>Melodies</span>
</a>
<a href="#" class="bg-gray-900 hover:bg-gray-800 rounded-lg p-4 flex flex-col items-center transition-all">
<i data-feather="wind" class="w-8 h-8 mb-2 text-purple-500"></i>
<span>Ambient</span>
</a>
<a href="#" class="bg-gray-900 hover:bg-gray-800 rounded-lg p-4 flex flex-col items-center transition-all">
<i data-feather="zap" class="w-8 h-8 mb-2 text-purple-500"></i>
<span>FX</span>
</a>
<a href="#" class="bg-gray-900 hover:bg-gray-800 rounded-lg p-4 flex flex-col items-center transition-all">
<i data-feather="disc" class="w-8 h-8 mb-2 text-purple-500"></i>
<span>Loops</span>
</a>
</div>
</div>
</section>
</main>
<!-- Player -->
<div class="player-container fixed bottom-0 left-0 right-0 border-t border-gray-800 py-3 px-6 z-30">
<div class="max-w-7xl mx-auto flex items-center">
<div class="flex items-center w-1/4">
<img src="http://static.photos/music/200x200/1" alt="Now Playing" class="w-12 h-12 rounded-lg mr-4">
<div>
<h4 class="font-medium text-sm">Urban Kick 01</h4>
<p class="text-gray-400 text-xs">Urban Beats Pack</p>
</div>
</div>
<div class="w-2/4 flex flex-col items-center">
<div class="flex items-center space-x-4 mb-2">
<button class="text-gray-400 hover:text-white transition-all">
<i data-feather="skip-back" class="w-5 h-5"></i>
</button>
<button class="bg-purple-600 rounded-full p-2 hover:bg-purple-700 transition-all">
<i data-feather="play" class="w-5 h-5"></i>
</button>
<button class="text-gray-400 hover:text-white transition-all">
<i data-feather="skip-forward" class="w-5 h-5"></i>
</button>
</div>
<div class="w-full flex items-center space-x-3">
<span class="text-xs text-gray-400">1:23</span>
<div class="flex-grow h-1 bg-gray-700 rounded-full overflow-hidden">
<div class="h-full bg-purple-600 rounded-full" style="width: 45%"></div>
</div>
<span class="text-xs text-gray-400">3:42</span>
</div>
</div>
<div class="w-1/4 flex justify-end items-center space-x-4">
<button class="text-gray-400 hover:text-white transition-all">
<i data-feather="heart" class="w-5 h-5"></i>
</button>
<button class="text-gray-400 hover:text-white transition-all">
<i data-feather="repeat" class="w-5 h-5"></i>
</button>
<div class="flex items-center space-x-2">
<i data-feather="volume-2" class="w-4 h-4 text-gray-400"></i>
<div class="w-20 h-1 bg-gray-700 rounded-full overflow-hidden">
<div class="h-full bg-gray-400 rounded-full" style="width: 80%"></div>
</div>
</div>
</div>
</div>
</div>
<script>
AOS.init({
duration: 800,
easing: 'ease-in-out',
once: true
});
feather.replace();
</script>
</body>
</html>
|