Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Categories | Hardcore Haven Hub</title> | |
| <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> | |
| </head> | |
| <body class="bg-gray-100 min-h-screen"> | |
| <custom-navbar></custom-navbar> | |
| <main class="container mx-auto px-4 py-8"> | |
| <h1 class="text-4xl font-bold mb-8 text-gray-800">Categories</h1> | |
| <div class="grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 lg:grid-cols-5 gap-4"> | |
| <a href="#" class="category-card bg-white rounded-lg shadow p-4 text-center hover:bg-pink-50 transition-colors"> | |
| <div class="w-16 h-16 mx-auto mb-2 bg-pink-100 rounded-full flex items-center justify-center"> | |
| <i data-feather="heart" class="text-pink-500"></i> | |
| </div> | |
| <h3 class="font-medium">Hardcore</h3> | |
| <p class="text-sm text-gray-500">1,234 videos</p> | |
| </a> | |
| <a href="#" class="category-card bg-white rounded-lg shadow p-4 text-center hover:bg-pink-50 transition-colors"> | |
| <div class="w-16 h-16 mx-auto mb-2 bg-pink-100 rounded-full flex items-center justify-center"> | |
| <i data-feather="user" class="text-pink-500"></i> | |
| </div> | |
| <h3 class="font-medium">Solo</h3> | |
| <p class="text-sm text-gray-500">876 videos</p> | |
| </a> | |
| <a href="#" class="category-card bg-white rounded-lg shadow p-4 text-center hover:bg-pink-50 transition-colors"> | |
| <div class="w-16 h-16 mx-auto mb-2 bg-pink-100 rounded-full flex items-center justify-center"> | |
| <i data-feather="users" class="text-pink-500"></i> | |
| </div> | |
| <h3 class="font-medium">Threesome</h3> | |
| <p class="text-sm text-gray-500">542 videos</p> | |
| </a> | |
| <a href="#" class="category-card bg-white rounded-lg shadow p-4 text-center hover:bg-pink-50 transition-colors"> | |
| <div class="w-16 h-16 mx-auto mb-2 bg-pink-100 rounded-full flex items-center justify-center"> | |
| <i data-feather="video" class="text-pink-500"></i> | |
| </div> | |
| <h3 class="font-medium">HD</h3> | |
| <p class="text-sm text-gray-500">1,098 videos</p> | |
| </a> | |
| <a href="#" class="category-card bg-white rounded-lg shadow p-4 text-center hover:bg-pink-50 transition-colors"> | |
| <div class="w-16 h-16 mx-auto mb-2 bg-pink-100 rounded-full flex items-center justify-center"> | |
| <i data-feather="star" class="text-pink-500"></i> | |
| </div> | |
| <h3 class="font-medium">Premium</h3> | |
| <p class="text-sm text-gray-500">432 videos</p> | |
| </a> | |
| </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> |