Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Collection - Groovy Vinyl Player</title> | |
| <link rel="icon" type="image/x-icon" href="/static/favicon.ico"> | |
| <link rel="stylesheet" href="style.css"> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> | |
| <script src="https://unpkg.com/feather-icons"></script> | |
| </head> | |
| <body class="bg-gradient-to-br from-gray-900 to-black text-white min-h-screen flex flex-col"> | |
| <custom-navbar></custom-navbar> | |
| <main class="flex-grow container mx-auto px-4 py-12"> | |
| <div class="max-w-6xl mx-auto"> | |
| <h1 class="text-4xl font-bold mb-8 text-center">Vinyl Collection</h1> | |
| <div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-6"> | |
| <!-- Record 1 --> | |
| <div class="bg-gray-800 rounded-2xl p-4 hover:bg-gray-750 transition-all duration-300 transform hover:-translate-y-1"> | |
| <div class="aspect-square mb-4 rounded-lg overflow-hidden"> | |
| <img src="http://static.photos/music/320x240/1" alt="Album Cover" class="w-full h-full object-cover"> | |
| </div> | |
| <h3 class="font-semibold text-lg mb-1">Abbey Road</h3> | |
| <p class="text-gray-400 text-sm mb-2">The Beatles</p> | |
| <div class="flex justify-between items-center"> | |
| <span class="text-amber-500 text-sm">1969</span> | |
| <button class="text-xs bg-amber-600 hover:bg-amber-500 px-2 py-1 rounded transition-colors"> | |
| Play | |
| </button> | |
| </div> | |
| </div> | |
| <!-- Record 2 --> | |
| <div class="bg-gray-800 rounded-2xl p-4 hover:bg-gray-750 transition-all duration-300 transform hover:-translate-y-1"> | |
| <div class="aspect-square mb-4 rounded-lg overflow-hidden"> | |
| <img src="http://static.photos/music/320x240/2" alt="Album Cover" class="w-full h-full object-cover"> | |
| </div> | |
| <h3 class="font-semibold text-lg mb-1">Dark Side of the Moon</h3> | |
| <p class="text-gray-400 text-sm mb-2">Pink Floyd</p> | |
| <div class="flex justify-between items-center"> | |
| <span class="text-amber-500 text-sm">1973</span> | |
| <button class="text-xs bg-amber-600 hover:bg-amber-500 px-2 py-1 rounded transition-colors"> | |
| Play | |
| </button> | |
| </div> | |
| </div> | |
| <!-- Record 3 --> | |
| <div class="bg-gray-800 rounded-2xl p-4 hover:bg-gray-750 transition-all duration-300 transform hover:-translate-y-1"> | |
| <div class="aspect-square mb-4 rounded-lg overflow-hidden"> | |
| <img src="http://static.photos/music/320x240/3" alt="Album Cover" class="w-full h-full object-cover"> | |
| </div> | |
| <h3 class="font-semibold text-lg mb-1">Rumours</h3> | |
| <p class="text-gray-400 text-sm mb-2">Fleetwood Mac</p> | |
| <div class="flex justify-between items-center"> | |
| <span class="text-amber-500 text-sm">1977</span> | |
| <button class="text-xs bg-amber-600 hover:bg-amber-500 px-2 py-1 rounded transition-colors"> | |
| Play | |
| </button> | |
| </div> | |
| </div> | |
| <!-- Record 4 --> | |
| <div class="bg-gray-800 rounded-2xl p-4 hover:bg-gray-750 transition-all duration-300 transform hover:-translate-y-1"> | |
| <div class="aspect-square mb-4 rounded-lg overflow-hidden"> | |
| <img src="http://static.photos/music/320x240/4" alt="Album Cover" class="w-full h-full object-cover"> | |
| </div> | |
| <h3 class="font-semibold text-lg mb-1">Hotel California</h3> | |
| <p class="text-gray-400 text-sm mb-2">Eagles</p> | |
| <div class="flex justify-between items-center"> | |
| <span class="text-amber-500 text-sm">1976</span> | |
| <button class="text-xs bg-amber-600 hover:bg-amber-500 px-2 py-1 rounded transition-colors"> | |
| Play | |
| </button> | |
| </div> | |
| </div> | |
| <!-- Record 5 --> | |
| <div class="bg-gray-800 rounded-2xl p-4 hover:bg-gray-750 transition-all duration-300 transform hover:-translate-y-1"> | |
| <div class="aspect-square mb-4 rounded-lg overflow-hidden"> | |
| <img src="http://static.photos/music/320x240/5" alt="Album Cover" class="w-full h-full object-cover"> | |
| </div> | |
| <h3 class="font-semibold text-lg mb-1">Led Zeppelin IV</h3> | |
| <p class="text-gray-400 text-sm mb-2">Led Zeppelin</p> | |
| <div class="flex justify-between items-center"> | |
| <span class="text-amber-500 text-sm">1971</span> | |
| <button class="text-xs bg-amber-600 hover:bg-amber-500 px-2 py-1 rounded transition-colors"> | |
| Play | |
| </button> | |
| </div> | |
| </div> | |
| <!-- Record 6 --> | |
| <div class="bg-gray-800 rounded-2xl p-4 hover:bg-gray-750 transition-all duration-300 transform hover:-translate-y-1"> | |
| <div class="aspect-square mb-4 rounded-lg overflow-hidden"> | |
| <img src="http://static.photos/music/320x240/6" alt="Album Cover" class="w-full h-full object-cover"> | |
| </div> | |
| <h3 class="font-semibold text-lg mb-1">Pet Sounds</h3> | |
| <p class="text-gray-400 text-sm mb-2">The Beach Boys</p> | |
| <div class="flex justify-between items-center"> | |
| <span class="text-amber-500 text-sm">1966</span> | |
| <button class="text-xs bg-amber-600 hover:bg-amber-500 px-2 py-1 rounded transition-colors"> | |
| Play | |
| </button> | |
| </div> | |
| </div> | |
| <!-- Record 7 --> | |
| <div class="bg-gray-800 rounded-2xl p-4 hover:bg-gray-750 transition-all duration-300 transform hover:-translate-y-1"> | |
| <div class="aspect-square mb-4 rounded-lg overflow-hidden"> | |
| <img src="http://static.photos/music/320x240/7" alt="Album Cover" class="w-full h-full object-cover"> | |
| </div> | |
| <h3 class="font-semibold text-lg mb-1">Nevermind</h3> | |
| <p class="text-gray-400 text-sm mb-2">Nirvana</p> | |
| <div class="flex justify-between items-center"> | |
| <span class="text-amber-500 text-sm">1991</span> | |
| <button class="text-xs bg-amber-600 hover:bg-amber-500 px-2 py-1 rounded transition-colors"> | |
| Play | |
| </button> | |
| </div> | |
| </div> | |
| <!-- Record 8 --> | |
| <div class="bg-gray-800 rounded-2xl p-4 hover:bg-gray-750 transition-all duration-300 transform hover:-translate-y-1"> | |
| <div class="aspect-square mb-4 rounded-lg overflow-hidden"> | |
| <img src="http://static.photos/music/320x240/8" alt="Album Cover" class="w-full h-full object-cover"> | |
| </div> | |
| <h3 class="font-semibold text-lg mb-1">What's Going On</h3> | |
| <p class="text-gray-400 text-sm mb-2">Marvin Gaye</p> | |
| <div class="flex justify-between items-center"> | |
| <span class="text-amber-500 text-sm">1971</span> | |
| <button class="text-xs bg-amber-600 hover:bg-amber-500 px-2 py-1 rounded transition-colors"> | |
| Play | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </main> | |
| <custom-footer></custom-footer> | |
| <script src="components/navbar.js"></script> | |
| <script src="components/footer.js"></script> | |
| <script src="script.js"></script> | |
| <script>feather.replace();</script> | |
| </body> | |
| </html> |