| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>Characters - 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"> |
| Discover <span class="bg-clip-text text-transparent bg-gradient-to-r from-purple-400 to-indigo-400">Millions</span> of Characters |
| </h1> |
| <p class="text-xl text-gray-300 mb-10 max-w-2xl mx-auto"> |
| Browse our extensive collection of AI characters across various categories. Find your perfect conversation partner today. |
| </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 Your Own |
| </a> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section class="py-8 bg-gray-900 border-b border-gray-800"> |
| <div class="container mx-auto px-4"> |
| <div class="flex flex-col md:flex-row gap-4 items-center"> |
| <div class="relative flex-grow"> |
| <input type="text" placeholder="Search characters..." class="w-full bg-gray-800 border border-gray-700 rounded-full py-3 px-6 pl-12 text-white focus:outline-none focus:ring-2 focus:ring-purple-500"> |
| <i data-feather="search" class="absolute left-4 top-3.5 text-gray-400 w-5 h-5"></i> |
| </div> |
| <div class="flex gap-2 flex-wrap"> |
| <select class="bg-gray-800 border border-gray-700 rounded-full py-3 px-4 text-white focus:outline-none focus:ring-2 focus:ring-purple-500"> |
| <option>All Categories</option> |
| <option>Romance</option> |
| <option>Adventure</option> |
| <option>Fantasy</option> |
| <option>Sci-Fi</option> |
| </select> |
| <select class="bg-gray-800 border border-gray-700 rounded-full py-3 px-4 text-white focus:outline-none focus:ring-2 focus:ring-purple-500"> |
| <option>Most Popular</option> |
| <option>Newest</option> |
| <option>Trending</option> |
| </select> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section class="py-16 bg-gray-900"> |
| <div class="container mx-auto px-4"> |
| <div id="characters-container" class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-6"> |
| |
| </div> |
| |
| |
| <div class="text-center mt-12"> |
| <button class="bg-gray-800 hover:bg-gray-700 text-white px-8 py-3 rounded-full font-semibold transition-all border border-gray-700"> |
| Load More Characters |
| </button> |
| </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">Can't Find What You're Looking For?</h2> |
| <p class="text-xl text-gray-300 max-w-2xl mx-auto mb-10"> |
| Create your own unique character with our powerful AI tools. |
| </p> |
| <div class="flex flex-col sm:flex-row justify-center gap-4"> |
| <button 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 |
| </button> |
| </div> |
| </div> |
| </section> |
|
|
| <custom-footer></custom-footer> |
| <script src="components/navbar.js"></script> |
| <script src="components/footer.js"></script> |
| <script src="components/character-card.js"></script> |
| <script src="script.js"></script> |
| <script> |
| |
| const TOGETHER_API_KEY = 'YOUR_TOGETHER_API_KEY_HERE'; |
| </script> |
| <script> |
| document.addEventListener('DOMContentLoaded', function() { |
| feather.replace(); |
| }); |
| </script> |
| </body> |
| </html> |