File size: 5,451 Bytes
64e436e 99fdf23 64e436e cac125f 64e436e cac125f 64e436e cac125f 64e436e 02d8dfa 99fdf23 64e436e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 | <!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>
<!-- Characters Header -->
<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>
<!-- Search and Filters -->
<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>
<!-- Characters Grid -->
<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">
<!-- Character cards will be populated by JavaScript -->
</div>
<!-- Load More Button -->
<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>
<!-- CTA 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>
// Together API key for Hermes 3 405B
const TOGETHER_API_KEY = 'YOUR_TOGETHER_API_KEY_HERE';
</script>
<script>
document.addEventListener('DOMContentLoaded', function() {
feather.replace();
});
</script>
</body>
</html> |