kingarnica's picture
its not audio vizualizer its audio loops samples for producers
29917e8 verified
<!DOCTYPE html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ruido Music Platform</title>
<link rel="stylesheet" href="style.css">
<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>
</head>
<body class="bg-gray-900 text-gray-100 min-h-screen">
<audio-navbar></audio-navbar>
<main class="container mx-auto px-4 py-8">
<div class="text-center mb-12">
<h1 class="text-4xl md:text-6xl font-bold mb-4 bg-clip-text text-transparent bg-gradient-to-r from-indigo-500 via-purple-500 to-pink-500">
Ruido Samples
</h1>
<p class="text-xl text-gray-400 max-w-2xl mx-auto">
Premium royalty-free loops and samples for music producers
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6 mb-12">
<!-- Sample Pack 1 -->
<div class="bg-gray-800 rounded-xl p-6 shadow-lg hover:shadow-xl transition">
<img src="http://static.photos/music/640x360/1" alt="Drum Kit" class="w-full h-48 object-cover rounded-lg mb-4">
<h2 class="text-2xl font-semibold mb-2">Urban Drum Kit</h2>
<p class="text-gray-400 mb-4">120 premium drum one-shots and loops for hip-hop and trap production</p>
<div class="flex justify-between items-center">
<span class="text-indigo-400 font-medium">24.99€</span>
<button class="bg-indigo-600 hover:bg-indigo-700 text-white py-2 px-4 rounded-lg transition">
Preview
</button>
</div>
</div>
<!-- Sample Pack 2 -->
<div class="bg-gray-800 rounded-xl p-6 shadow-lg hover:shadow-xl transition">
<img src="http://static.photos/music/640x360/2" alt="Synth Pack" class="w-full h-48 object-cover rounded-lg mb-4">
<h2 class="text-2xl font-semibold mb-2">Analog Synth Essentials</h2>
<p class="text-gray-400 mb-4">80 vintage synth loops and one-shots for electronic music</p>
<div class="flex justify-between items-center">
<span class="text-indigo-400 font-medium">19.99€</span>
<button class="bg-indigo-600 hover:bg-indigo-700 text-white py-2 px-4 rounded-lg transition">
Preview
</button>
</div>
</div>
<!-- Sample Pack 3 -->
<div class="bg-gray-800 rounded-xl p-6 shadow-lg hover:shadow-xl transition">
<img src="http://static.photos/music/640x360/3" alt="Vocal Pack" class="w-full h-48 object-cover rounded-lg mb-4">
<h2 class="text-2xl font-semibold mb-2">Soulful Vocals</h2>
<p class="text-gray-400 mb-4">50 R&B and soul vocal phrases and ad-libs</p>
<div class="flex justify-between items-center">
<span class="text-indigo-400 font-medium">29.99€</span>
<button class="bg-indigo-600 hover:bg-indigo-700 text-white py-2 px-4 rounded-lg transition">
Preview
</button>
</div>
</div>
</div>
<div class="bg-gray-800 rounded-2xl p-6 shadow-xl mb-12">
<h2 class="text-2xl font-semibold mb-6">πŸ”₯ Trending Free Samples</h2>
<div class="grid grid-cols-2 md:grid-cols-4 gap-4">
<div class="text-center">
<button class="w-full aspect-square bg-gray-700 hover:bg-gray-600 rounded-lg transition mb-2 flex items-center justify-center">
<i data-feather="play" class="w-6 h-6"></i>
</button>
<span class="text-sm">Trap Kick 01</span>
</div>
<div class="text-center">
<button class="w-full aspect-square bg-gray-700 hover:bg-gray-600 rounded-lg transition mb-2 flex items-center justify-center">
<i data-feather="play" class="w-6 h-6"></i>
</button>
<span class="text-sm">Synth Pluck</span>
</div>
<div class="text-center">
<button class="w-full aspect-square bg-gray-700 hover:bg-gray-600 rounded-lg transition mb-2 flex items-center justify-center">
<i data-feather="play" class="w-6 h-6"></i>
</button>
<span class="text-sm">Hi-Hat Roll</span>
</div>
<div class="text-center">
<button class="w-full aspect-square bg-gray-700 hover:bg-gray-600 rounded-lg transition mb-2 flex items-center justify-center">
<i data-feather="play" class="w-6 h-6"></i>
</button>
<span class="text-sm">Vocal Chop</span>
</div>
</div>
</div>
</main>
<audio-footer></audio-footer>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script src="components/visualizer.js"></script>
<script src="script.js"></script>
<script>
feather.replace();
</script>
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
</body>
</html>