Spaces:
Running
Running

Make a website like sounds Splice like the sound sample library theorist like the minute they have to have the same functions as a similar, but it’s gonna different can be just whole minimal black. You know the only dark mode and there’s gonna be a player at the bottom, there’s gonna be you know life fairies sound packs there isgonna be smooth, scrolling animation for everything you know for touch phones and also computer depending on what it is there’s gonna be settings. Profile library trending. - Initial Deployment
c915f68
verified
<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> | |