groovy-vinyl-player / about.html
C50BARZ's picture
New CD Player
d987ee8 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About - 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-3xl mx-auto">
<h1 class="text-4xl font-bold mb-8 text-center">About Groovy Vinyl Player</h1>
<div class="bg-gray-800 rounded-2xl p-8 mb-8">
<div class="flex flex-col md:flex-row gap-8 items-center">
<div class="md:w-1/3">
<img src="http://static.photos/vintage/320x240/42" alt="Vinyl Record" class="rounded-lg shadow-lg w-full">
</div>
<div class="md:w-2/3">
<h2 class="text-2xl font-semibold mb-4">Experience the Nostalgia</h2>
<p class="text-gray-300 mb-4">
Groovy Vinyl Player brings back the golden age of music with a modern twist.
Our virtual vinyl player recreates the authentic experience of playing records
with stunning visuals and high-quality audio.
</p>
<p class="text-gray-300">
Whether you're a vinyl collector or new to the format, our player offers
an immersive way to enjoy your favorite tracks with the warmth and character
that only vinyl can provide.
</p>
</div>
</div>
</div>
<div class="grid md:grid-cols-2 gap-8">
<div class="bg-gray-800 rounded-2xl p-6">
<h3 class="text-xl font-semibold mb-4 flex items-center gap-2">
<i data-feather="music" class="w-5 h-5 text-amber-500"></i>
Features
</h3>
<ul class="space-y-2 text-gray-300">
<li class="flex items-start gap-2">
<i data-feather="check-circle" class="w-4 h-4 text-amber-500 mt-1"></i>
<span>Authentic vinyl player simulation</span>
</li>
<li class="flex items-start gap-2">
<i data-feather="check-circle" class="w-4 h-4 text-amber-500 mt-1"></i>
<span>Interactive playlist management</span>
</li>
<li class="flex items-start gap-2">
<i data-feather="check-circle" class="w-4 h-4 text-amber-500 mt-1"></i>
<span>Visual progress tracking</span>
</li>
<li class="flex items-start gap-2">
<i data-feather="check-circle" class="w-4 h-4 text-amber-500 mt-1"></i>
<span>Responsive design for all devices</span>
</li>
</ul>
</div>
<div class="bg-gray-800 rounded-2xl p-6">
<h3 class="text-xl font-semibold mb-4 flex items-center gap-2">
<i data-feather="heart" class="w-5 h-5 text-amber-500"></i>
Why Vinyl?
</h3>
<p class="text-gray-300 mb-4">
Vinyl records offer a unique listening experience that digital formats can't replicate.
The analog warmth, large artwork, and ritual of playing a record create a deeper
connection between the listener and the music.
</p>
<p class="text-gray-300">
Our player captures this essence while providing the convenience of digital playback.
</p>
</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>