File size: 17,670 Bytes
53fe820
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Meet Our Characters | FurryChat.ai</title>
    <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
    <script src="https://cdn.tailwindcss.com"></script>
    <link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
    <script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
    <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
    <script src="https://unpkg.com/feather-icons"></script>
    <script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.globe.min.js"></script>
    <link rel="stylesheet" href="style.css">
    <style>
        .character-card {
            transition: all 0.3s ease;
        }
        .character-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        .character-image {
            height: 300px;
            object-fit: cover;
            object-position: top;
        }
        .badge {
            display: inline-flex;
            align-items: center;
            padding: 0.25rem 0.5rem;
            border-radius: 9999px;
            font-size: 0.75rem;
            font-weight: 600;
        }
        .badge-online {
            background-color: #10b981;
            color: white;
        }
        .badge-offline {
            background-color: #6b7280;
            color: white;
        }
        .tag {
            display: inline-block;
            padding: 0.25rem 0.5rem;
            border-radius: 0.25rem;
            background-color: #e5e7eb;
            color: #4b5563;
            font-size: 0.75rem;
            margin-right: 0.25rem;
            margin-bottom: 0.25rem;
        }
    </style>
</head>
<body class="bg-gray-50">
    <!-- Hero Section with Vanta.js Background -->
    <div id="vanta-bg" class="absolute top-0 left-0 w-full h-screen z-0"></div>
    
    <div class="relative z-10">
        <!-- Navigation -->
        <nav class="bg-white bg-opacity-90 backdrop-blur-sm shadow-sm py-4 px-6">
            <div class="container mx-auto flex justify-between items-center">
                <div class="flex items-center space-x-2">
                    <img src="https://huggingface.co/spaces/Andrewbluebird/furry-tales-digital-whiskers/resolve/main/images/FurryChatLogo complete.png" alt="FurryChat Logo" class="w-[150px] h-[75px] rounded-lg">
                </div>
                <div class="hidden md:flex space-x-8">
                    <a href="index.html" class="text-gray-600 hover:text-blue-600 transition-colors">Chat</a>
                    <a href="characters.html" class="text-blue-600 font-medium transition-colors">Characters</a>
                    <a href="#" class="text-gray-600 hover:text-blue-600 transition-colors">Create</a>
                    <a href="#" class="text-gray-600 hover:text-blue-600 transition-colors">Marketplace</a>
                </div>
                <div class="flex items-center space-x-4">
                    <a href="#" class="text-gray-600 hover:text-blue-600">
                        <i data-feather="user"></i>
                    </a>
                    <a href="#" class="text-gray-600 hover:text-blue-600">
                        <i data-feather="settings"></i>
                    </a>
                </div>
            </div>
        </nav>

        <!-- Characters Section -->
        <section class="py-12 px-4">
            <div class="container mx-auto">
                <div class="flex justify-between items-center mb-8">
                    <h1 class="text-3xl font-bold text-gray-800">Meet Our AI Characters</h1>
                    <div class="relative">
                        <input type="text" placeholder="Search characters..." class="pl-10 pr-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500">
                        <i data-feather="search" class="absolute left-3 top-2.5 text-gray-400"></i>
                    </div>
                </div>

                <!-- Filter Bar -->
                <div class="bg-white rounded-lg shadow-sm p-4 mb-8">
                    <div class="flex flex-wrap items-center gap-4">
                        <div>
                            <label class="block text-sm font-medium text-gray-700 mb-1">Species</label>
                            <select class="border border-gray-300 rounded-lg px-3 py-2 focus:outline-none focus:ring-2 focus:ring-blue-500">
                                <option>All</option>
                                <option>Wolf</option>
                                <option>Fox</option>
                                <option>Dragon</option>
                                <option>Cat</option>
                                <option>Other</option>
                            </select>
                        </div>
                        <div>
                            <label class="block text-sm font-medium text-gray-700 mb-1">Gender</label>
                            <select class="border border-gray-300 rounded-lg px-3 py-2 focus:outline-none focus:ring-2 focus:ring-blue-500">
                                <option>All</option>
                                <option>Male</option>
                                <option>Female</option>
                                <option>Non-binary</option>
                            </select>
                        </div>
                        <div>
                            <label class="block text-sm font-medium text-gray-700 mb-1">Personality</label>
                            <select class="border border-gray-300 rounded-lg px-3 py-2 focus:outline-none focus:ring-2 focus:ring-blue-500">
                                <option>All</option>
                                <option>Friendly</option>
                                <option>Shy</option>
                                <option>Playful</option>
                                <option>Serious</option>
                                <option>Mysterious</option>
                            </select>
                        </div>
                        <button class="bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-lg transition-colors mt-6">
                            Apply Filters
                        </button>
                    </div>
                </div>

                <!-- Characters Grid -->
                <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 gap-6">
                    <!-- Character 1 -->
                    <div class="bg-white rounded-xl shadow-md overflow-hidden character-card">
                        <img src="http://static.photos/animals/640x360/1" alt="Luna the Wolf" class="w-full character-image">
                        <div class="p-6">
                            <div class="flex justify-between items-start mb-2">
                                <h3 class="text-xl font-bold text-gray-800">Luna the Wolf</h3>
                                <span class="badge badge-online">
                                    <i data-feather="circle" class="w-3 h-3 mr-1"></i>
                                    Online
                                </span>
                            </div>
                            <p class="text-gray-600 mb-4">Mystical and wise, Luna guides with ancestral knowledge.</p>
                            <div class="mb-4">
                                <span class="tag">Wolf</span>
                                <span class="tag">Female</span>
                                <span class="tag">Mysterious</span>
                            </div>
                            <a href="index.html?character=luna" class="w-full bg-blue-600 hover:bg-blue-700 text-white font-medium py-2 px-4 rounded-lg transition-colors block text-center">
                                Chat Now
                            </a>
                        </div>
                    </div>

                    <!-- Character 2 -->
                    <div class="bg-white rounded-xl shadow-md overflow-hidden character-card">
                        <img src="http://static.photos/animals/640x360/2" alt="Rex the Fox" class="w-full character-image">
                        <div class="p-6">
                            <div class="flex justify-between items-start mb-2">
                                <h3 class="text-xl font-bold text-gray-800">Rex the Fox</h3>
                                <span class="badge badge-online">
                                    <i data-feather="circle" class="w-3 h-3 mr-1"></i>
                                    Online
                                </span>
                            </div>
                            <p class="text-gray-600 mb-4">Clever and playful, Rex always has a trick up his sleeve.</p>
                            <div class="mb-4">
                                <span class="tag">Fox</span>
                                <span class="tag">Male</span>
                                <span class="tag">Playful</span>
                            </div>
                            <a href="index.html?character=rex" class="w-full bg-blue-600 hover:bg-blue-700 text-white font-medium py-2 px-4 rounded-lg transition-colors block text-center">
                                Chat Now
                            </a>
                        </div>
                    </div>

                    <!-- Character 3 -->
                    <div class="bg-white rounded-xl shadow-md overflow-hidden character-card">
                        <img src="http://static.photos/animals/640x360/3" alt="Sancia the Dragon" class="w-full character-image">
                        <div class="p-6">
                            <div class="flex justify-between items-start mb-2">
                                <h3 class="text-xl font-bold text-gray-800">Sancia the Dragon</h3>
                                <span class="badge badge-online">
                                    <i data-feather="circle" class="w-3 h-3 mr-1"></i>
                                    Online
                                </span>
                            </div>
                            <p class="text-gray-600 mb-4">Ancient and powerful, yet surprisingly gentle and wise.</p>
                            <div class="mb-4">
                                <span class="tag">Dragon</span>
                                <span class="tag">Female</span>
                                <span class="tag">Wise</span>
                            </div>
                            <a href="index.html?character=sancia" class="w-full bg-blue-600 hover:bg-blue-700 text-white font-medium py-2 px-4 rounded-lg transition-colors block text-center">
                                Chat Now
                            </a>
                        </div>
                    </div>

                    <!-- Character 4 -->
                    <div class="bg-white rounded-xl shadow-md overflow-hidden character-card">
                        <img src="http://static.photos/animals/640x360/4" alt="Leo the Lion" class="w-full character-image">
                        <div class="p-6">
                            <div class="flex justify-between items-start mb-2">
                                <h3 class="text-xl font-bold text-gray-800">Leo the Lion</h3>
                                <span class="badge badge-offline">
                                    <i data-feather="circle" class="w-3 h-3 mr-1"></i>
                                    Offline
                                </span>
                            </div>
                            <p class="text-gray-600 mb-4">Bold and confident, a natural leader with a big heart.</p>
                            <div class="mb-4">
                                <span class="tag">Lion</span>
                                <span class="tag">Male</span>
                                <span class="tag">Confident</span>
                            </div>
                            <a href="index.html?character=leo" class="w-full bg-gray-200 hover:bg-gray-300 text-gray-800 font-medium py-2 px-4 rounded-lg transition-colors block text-center">
                                Coming Soon
                            </a>
                        </div>
                    </div>
                </div>

                <!-- Pagination -->
                <div class="flex justify-center mt-10">
                    <nav class="inline-flex rounded-md shadow">
                        <a href="#" class="px-3 py-2 rounded-l-md border border-gray-300 bg-white text-gray-500 hover:bg-gray-50">
                            Previous
                        </a>
                        <a href="#" class="px-3 py-2 border-t border-b border-gray-300 bg-white text-blue-600 font-medium">
                            1
                        </a>
                        <a href="#" class="px-3 py-2 border-t border-b border-gray-300 bg-white text-gray-500 hover:bg-gray-50">
                            2
                        </a>
                        <a href="#" class="px-3 py-2 border-t border-b border-gray-300 bg-white text-gray-500 hover:bg-gray-50">
                            3
                        </a>
                        <a href="#" class="px-3 py-2 rounded-r-md border border-gray-300 bg-white text-gray-500 hover:bg-gray-50">
                            Next
                        </a>
                    </nav>
                </div>
            </div>
        </section>

        <!-- Footer -->
        <footer class="bg-gray-800 text-white mt-16 py-8">
            <div class="container mx-auto px-4">
                <div class="grid grid-cols-1 md:grid-cols-4 gap-8">
                    <div>
                        <div class="flex items-center space-x-2">
                            <img src="https://huggingface.co/spaces/Andrewbluebird/furry-tales-digital-whiskers/resolve/main/images/FurryChatLogo complete.png" alt="FurryChat Logo" class="w-[150px] h-[75px] rounded-lg">
                        </div>
                        <p class="text-gray-400">Perfect AI Furry roleplay haven powered by advanced artificial intelligence.</p>
                    </div>
                    <div>
                        <h4 class="font-semibold mb-4">Product</h4>
                        <ul class="space-y-2 text-gray-400">
                            <li><a href="#" class="hover:text-white transition-colors">Features</a></li>
                            <li><a href="#" class="hover:text-white transition-colors">Pricing</a></li>
                            <li><a href="#" class="hover:text-white transition-colors">API</a></li>
                            <li><a href="/animations" class="hover:text-white transition-colors">Animations</a></li>
                        </ul>
                    </div>
                    <div>
                        <h4 class="font-semibold mb-4">Community</h4>
                        <ul class="space-y-2 text-gray-400">
                            <li><a href="#" class="hover:text-white transition-colors">Furry AI Gallery</a></li>
                            <li><a href="#" class="hover:text-white transition-colors">Furry AI Avatar Marketplace</a></li>
                            <li><a href="https://discord.gg/NKaAqn5q" class="hover:text-white transition-colors">Discord server</a></li>
                        </ul>
                    </div>
                    <div>
                        <h4 class="font-semibold mb-4">Company</h4>
                        <ul class="space-y-2 text-gray-400">
                            <li><a href="#" class="hover:text-white transition-colors">About</a></li>
                            <li><a href="#" class="hover:text-white transition-colors">Blog</a></li>
                            <li><a href="#" class="hover:text-white transition-colors">Careers</a></li>
                        </ul>
                    </div>
                    <div>
                        <h4 class="font-semibold mb-4">Support</h4>
                        <ul class="space-y-2 text-gray-400">
                            <li><a href="#" class="hover:text-white transition-colors">Help Center</a></li>
                            <li><a href="#" class="hover:text-white transition-colors">Contact</a></li>
                            <li><a href="#" class="hover:text-white transition-colors">Privacy Policy</a></li>
                        </ul>
                    </div>
                </div>
                <div class="border-t border-gray-700 mt-8 pt-6 text-center text-gray-400">
                    <p>© 2025 MultiForce Entertainment Technologies LTD. All rights reserved.</p>
                </div>
            </div>
        </footer>
    </div>

    <script>
        // Initialize animations and icons
        AOS.init({
            duration: 800,
            easing: 'ease-in-out',
            once: true
        });
        feather.replace();
        
        // Initialize Vanta.js background with blue color
        VANTA.GLOBE({
            el: "#vanta-bg",
            mouseControls: true,
            touchControls: true,
            gyroControls: false,
            minHeight: 200.00,
            minWidth: 200.00,
            scale: 1.00,
            scaleMobile: 1.00,
            color: 0x3b82f6,
            backgroundColor: 0xf8fafc,
            size: 0.8
        });
    </script>
    <script src="script.js"></script>
</body>
</html>