| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>Categories - TapChat</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://unpkg.com/feather-icons"></script> |
| <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet"> |
| </head> |
| <body class="bg-gray-900 text-white font-sans"> |
| <custom-navbar></custom-navbar> |
|
|
| |
| <section class="relative py-16 md:py-24 bg-gradient-to-br from-gray-900 to-gray-800"> |
| <div class="absolute inset-0 opacity-10"> |
| <div class="pattern-grid-lg text-gray-700/20 w-full h-full"></div> |
| </div> |
| <div class="container mx-auto px-4 relative z-10"> |
| <div class="max-w-3xl mx-auto text-center"> |
| <h1 class="text-4xl md:text-6xl font-bold mb-6"> |
| Explore by <span class="bg-clip-text text-transparent bg-gradient-to-r from-purple-400 to-indigo-400">Category</span> |
| </h1> |
| <p class="text-xl text-gray-300 mb-10 max-w-2xl mx-auto"> |
| Discover characters organized by themes, genres, and interests. Find exactly what matches your mood. |
| </p> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section class="py-16 bg-gray-900"> |
| <div class="container mx-auto px-4"> |
| <div class="grid grid-cols-2 md:grid-cols-4 lg:grid-cols-6 gap-6"> |
| <a href="#" class="bg-gray-800 hover:bg-gray-700 rounded-xl p-6 text-center transition-all transform hover:-translate-y-1"> |
| <div class="w-16 h-16 rounded-full bg-purple-500/20 flex items-center justify-center mx-auto mb-4"> |
| <i data-feather="heart" class="text-purple-400 w-8 h-8"></i> |
| </div> |
| <h3 class="text-lg font-semibold mb-2">Romance</h3> |
| <p class="text-gray-400 text-sm">1.2M characters</p> |
| </a> |
| <a href="#" class="bg-gray-800 hover:bg-gray-700 rounded-xl p-6 text-center transition-all transform hover:-translate-y-1"> |
| <div class="w-16 h-16 rounded-full bg-blue-500/20 flex items-center justify-center mx-auto mb-4"> |
| <i data-feather="sword" class="text-blue-400 w-8 h-8"></i> |
| </div> |
| <h3 class="text-lg font-semibold mb-2">Adventure</h3> |
| <p class="text-gray-400 text-sm">980K characters</p> |
| </a> |
| <a href="#" class="bg-gray-800 hover:bg-gray-700 rounded-xl p-6 text-center transition-all transform hover:-translate-y-1"> |
| <div class="w-16 h-16 rounded-full bg-green-500/20 flex items-center justify-center mx-auto mb-4"> |
| <i data-feather="users" class="text-green-400 w-8 h-8"></i> |
| </div> |
| <h3 class="text-lg font-semibold mb-2">Friendship</h3> |
| <p class="text-gray-400 text-sm">750K characters</p> |
| </a> |
| <a href="#" class="bg-gray-800 hover:bg-gray-700 rounded-xl p-6 text-center transition-all transform hover:-translate-y-1"> |
| <div class="w-16 h-16 rounded-full bg-yellow-500/20 flex items-center justify-center mx-auto mb-4"> |
| <i data-feather="zap" class="text-yellow-400 w-8 h-8"></i> |
| </div> |
| <h3 class="text-lg font-semibold mb-2">Supernatural</h3> |
| <p class="text-gray-400 text-sm">1.5M characters</p> |
| </a> |
| <a href="#" class="bg-gray-800 hover:bg-gray-700 rounded-xl p-6 text-center transition-all transform hover:-translate-y-1"> |
| <div class="w-16 h-16 rounded-full bg-red-500/20 flex items-center justify-center mx-auto mb-4"> |
| <i data-feather="film" class="text-red-400 w-8 h-8"></i> |
| </div> |
| <h3 class="text-lg font-semibold mb-2">Movies & TV</h3> |
| <p class="text-gray-400 text-sm">2.1M characters</p> |
| </a> |
| <a href="#" class="bg-gray-800 hover:bg-gray-700 rounded-xl p-6 text-center transition-all transform hover:-translate-y-1"> |
| <div class="w-16 h-16 rounded-full bg-indigo-500/20 flex items-center justify-center mx-auto mb-4"> |
| <i data-feather="book-open" class="text-indigo-400 w-8 h-8"></i> |
| </div> |
| <h3 class="text-lg font-semibold mb-2">Anime</h3> |
| <p class="text-gray-400 text-sm">3.4M characters</p> |
| </a> |
| <a href="#" class="bg-gray-800 hover:bg-gray-700 rounded-xl p-6 text-center transition-all transform hover:-translate-y-1"> |
| <div class="w-16 h-16 rounded-full bg-pink-500/20 flex items-center justify-center mx-auto mb-4"> |
| <i data-feather="gamepad" class="text-pink-400 w-8 h-8"></i> |
| </div> |
| <h3 class="text-lg font-semibold mb-2">Games</h3> |
| <p class="text-gray-400 text-sm">1.8M characters</p> |
| </a> |
| <a href="#" class="bg-gray-800 hover:bg-gray-700 rounded-xl p-6 text-center transition-all transform hover:-translate-y-1"> |
| <div class="w-16 h-16 rounded-full bg-teal-500/20 flex items-center justify-center mx-auto mb-4"> |
| <i data-feather="star" class="text-teal-400 w-8 h-8"></i> |
| </div> |
| <h3 class="text-lg font-semibold mb-2">Celebrities</h3> |
| <p class="text-gray-400 text-sm">890K characters</p> |
| </a> |
| <a href="#" class="bg-gray-800 hover:bg-gray-700 rounded-xl p-6 text-center transition-all transform hover:-translate-y-1"> |
| <div class="w-16 h-16 rounded-full bg-orange-500/20 flex items-center justify-center mx-auto mb-4"> |
| <i data-feather="music" class="text-orange-400 w-8 h-8"></i> |
| </div> |
| <h3 class="text-lg font-semibold mb-2">Music</h3> |
| <p class="text-gray-400 text-sm">620K characters</p> |
| </a> |
| <a href="#" class="bg-gray-800 hover:bg-gray-700 rounded-xl p-6 text-center transition-all transform hover:-translate-y-1"> |
| <div class="w-16 h-16 rounded-full bg-cyan-500/20 flex items-center justify-center mx-auto mb-4"> |
| <i data-feather="book" class="text-cyan-400 w-8 h-8"></i> |
| </div> |
| <h3 class="text-lg font-semibold mb-2">Books</h3> |
| <p class="text-gray-400 text-sm">1.1M characters</p> |
| </a> |
| <a href="#" class="bg-gray-800 hover:bg-gray-700 rounded-xl p-6 text-center transition-all transform hover:-translate-y-1"> |
| <div class="w-16 h-16 rounded-full bg-lime-500/20 flex items-center justify-center mx-auto mb-4"> |
| <i data-feather="smile" class="text-lime-400 w-8 h-8"></i> |
| </div> |
| <h3 class="text-lg font-semibold mb-2">Comedy</h3> |
| <p class="text-gray-400 text-sm">740K characters</p> |
| </a> |
| <a href="#" class="bg-gray-800 hover:bg-gray-700 rounded-xl p-6 text-center transition-all transform hover:-translate-y-1"> |
| <div class="w-16 h-16 rounded-full bg-rose-500/20 flex items-center justify-center mx-auto mb-4"> |
| <i data-feather="shield" class="text-rose-400 w-8 h-8"></i> |
| </div> |
| <h3 class="text-lg font-semibold mb-2">Superheroes</h3> |
| <p class="text-gray-400 text-sm">1.3M characters</p> |
| </a> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section class="py-20 bg-gradient-to-r from-purple-900/30 to-indigo-900/30"> |
| <div class="container mx-auto px-4 text-center"> |
| <h2 class="text-3xl md:text-4xl font-bold mb-6">Want More Categories?</h2> |
| <p class="text-xl text-gray-300 max-w-2xl mx-auto mb-10"> |
| We're constantly adding new categories based on community requests. |
| </p> |
| <div class="flex flex-col sm:flex-row justify-center gap-4"> |
| <a href="create.html" class="bg-gradient-to-r from-purple-600 to-indigo-600 hover:from-purple-700 hover:to-indigo-700 text-white px-8 py-4 rounded-full text-lg font-semibold transition-all shadow-lg shadow-purple-500/20"> |
| Create Character |
| </a> |
| </div> |
| </div> |
| </section> |
|
|
| <custom-footer></custom-footer> |
| <script src="components/navbar.js"></script> |
| <script src="components/footer.js"></script> |
| <script> |
| document.addEventListener('DOMContentLoaded', function() { |
| feather.replace(); |
| }); |
| </script> |
| </body> |
| </html> |