kubodimo0 commited on
Commit
d212233
·
verified ·
1 Parent(s): 54cc0c7

Add 2 files

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +471 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Langpal
3
- emoji: 🐢
4
- colorFrom: pink
5
- colorTo: gray
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: langpal
3
+ emoji: 🐳
4
+ colorFrom: purple
5
+ colorTo: pink
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,471 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>LangPal - Your AI Language Practice Partner</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <style>
10
+ .gradient-bg {
11
+ background: linear-gradient(135deg, #6B73FF 0%, #000DFF 100%);
12
+ }
13
+ .feature-card:hover {
14
+ transform: translateY(-5px);
15
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
16
+ }
17
+ .speech-bubble {
18
+ position: relative;
19
+ background: white;
20
+ border-radius: 1rem;
21
+ }
22
+ .speech-bubble:after {
23
+ content: '';
24
+ position: absolute;
25
+ bottom: -10px;
26
+ left: 20px;
27
+ border-width: 10px 10px 0;
28
+ border-style: solid;
29
+ border-color: white transparent;
30
+ }
31
+ .animate-float {
32
+ animation: float 3s ease-in-out infinite;
33
+ }
34
+ @keyframes float {
35
+ 0% { transform: translateY(0px); }
36
+ 50% { transform: translateY(-15px); }
37
+ 100% { transform: translateY(0px); }
38
+ }
39
+ </style>
40
+ </head>
41
+ <body class="font-sans antialiased text-gray-800">
42
+ <!-- Navigation -->
43
+ <nav class="container mx-auto px-6 py-4 flex justify-between items-center">
44
+ <div class="flex items-center space-x-2">
45
+ <div class="w-10 h-10 rounded-full gradient-bg flex items-center justify-center">
46
+ <i class="fas fa-comments text-white text-xl"></i>
47
+ </div>
48
+ <span class="text-xl font-bold text-gray-800">LangPal</span>
49
+ </div>
50
+ <div class="hidden md:flex space-x-8">
51
+ <a href="#features" class="hover:text-blue-600 transition">Features</a>
52
+ <a href="#how-it-works" class="hover:text-blue-600 transition">How It Works</a>
53
+ <a href="#testimonials" class="hover:text-blue-600 transition">Testimonials</a>
54
+ <a href="#faq" class="hover:text-blue-600 transition">FAQ</a>
55
+ </div>
56
+ <div>
57
+ <button class="gradient-bg text-white px-6 py-2 rounded-full hover:opacity-90 transition shadow-lg">
58
+ Get Started
59
+ </button>
60
+ </div>
61
+ </nav>
62
+
63
+ <!-- Hero Section -->
64
+ <section class="container mx-auto px-6 py-16 md:py-24 flex flex-col md:flex-row items-center">
65
+ <div class="md:w-1/2 mb-12 md:mb-0">
66
+ <h1 class="text-4xl md:text-5xl font-bold leading-tight mb-6">
67
+ Speak a new language <span class="text-blue-600">with confidence</span>
68
+ </h1>
69
+ <p class="text-lg text-gray-600 mb-8">
70
+ LangPal is your AI-powered language practice partner. Enter any dialogue and start practicing real conversations through interactive role-play scenarios.
71
+ </p>
72
+ <div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
73
+ <button class="gradient-bg text-white px-8 py-3 rounded-full hover:opacity-90 transition shadow-lg font-medium">
74
+ Start Practicing Free
75
+ </button>
76
+ <button class="border-2 border-gray-300 px-8 py-3 rounded-full hover:bg-gray-50 transition font-medium">
77
+ Watch Demo
78
+ </button>
79
+ </div>
80
+ <div class="mt-8 flex items-center">
81
+ <div class="flex -space-x-2">
82
+ <img src="https://randomuser.me/api/portraits/women/12.jpg" class="w-10 h-10 rounded-full border-2 border-white">
83
+ <img src="https://randomuser.me/api/portraits/men/43.jpg" class="w-10 h-10 rounded-full border-2 border-white">
84
+ <img src="https://randomuser.me/api/portraits/women/67.jpg" class="w-10 h-10 rounded-full border-2 border-white">
85
+ </div>
86
+ <div class="ml-4">
87
+ <p class="text-sm text-gray-600">Join <span class="font-bold">10,000+</span> language learners</p>
88
+ </div>
89
+ </div>
90
+ </div>
91
+ <div class="md:w-1/2 relative">
92
+ <div class="relative max-w-md mx-auto">
93
+ <div class="absolute -top-8 -left-8 w-32 h-32 bg-blue-100 rounded-full opacity-70"></div>
94
+ <div class="absolute -bottom-8 -right-8 w-32 h-32 bg-purple-100 rounded-full opacity-70"></div>
95
+ <div class="relative bg-white rounded-2xl shadow-xl overflow-hidden">
96
+ <div class="p-6">
97
+ <div class="flex items-center mb-4">
98
+ <div class="w-10 h-10 rounded-full gradient-bg flex items-center justify-center">
99
+ <i class="fas fa-robot text-white"></i>
100
+ </div>
101
+ <div class="ml-3">
102
+ <p class="font-medium">LangPal AI</p>
103
+ <p class="text-xs text-gray-500">Responding...</p>
104
+ </div>
105
+ </div>
106
+ <div class="speech-bubble p-4 mb-4">
107
+ <p>Hello! I'm your LangPal. What would you like to practice today? You can choose any scenario - ordering food, job interviews, or casual conversations!</p>
108
+ </div>
109
+ <div class="flex items-center">
110
+ <div class="w-10 h-10 rounded-full bg-gray-200 flex items-center justify-center">
111
+ <i class="fas fa-user text-gray-600"></i>
112
+ </div>
113
+ <div class="ml-3 flex-1">
114
+ <div class="bg-gray-100 rounded-full px-4 py-2">
115
+ <p class="text-gray-500 italic">Type your response...</p>
116
+ </div>
117
+ </div>
118
+ </div>
119
+ </div>
120
+ <div class="bg-gray-50 px-6 py-3 flex justify-between items-center">
121
+ <div class="flex space-x-4">
122
+ <button class="text-gray-500 hover:text-blue-600">
123
+ <i class="fas fa-microphone"></i>
124
+ </button>
125
+ <button class="text-gray-500 hover:text-blue-600">
126
+ <i class="fas fa-language"></i>
127
+ </button>
128
+ </div>
129
+ <button class="text-blue-600 font-medium">
130
+ Send <i class="fas fa-paper-plane ml-1"></i>
131
+ </button>
132
+ </div>
133
+ </div>
134
+ </div>
135
+ <div class="absolute -right-10 -bottom-10 w-24 h-24 bg-yellow-100 rounded-full animate-float hidden lg:block"></div>
136
+ </div>
137
+ </section>
138
+
139
+ <!-- Features Section -->
140
+ <section id="features" class="py-16 bg-gray-50">
141
+ <div class="container mx-auto px-6">
142
+ <div class="text-center mb-16">
143
+ <h2 class="text-3xl font-bold mb-4">Practice Anywhere, Anytime</h2>
144
+ <p class="text-lg text-gray-600 max-w-2xl mx-auto">
145
+ LangPal adapts to your learning style with powerful features that make language practice natural and effective.
146
+ </p>
147
+ </div>
148
+ <div class="grid md:grid-cols-3 gap-8">
149
+ <div class="feature-card bg-white p-8 rounded-xl transition duration-300">
150
+ <div class="w-14 h-14 gradient-bg rounded-lg flex items-center justify-center mb-6">
151
+ <i class="fas fa-random text-white text-2xl"></i>
152
+ </div>
153
+ <h3 class="text-xl font-bold mb-3">Custom Scenarios</h3>
154
+ <p class="text-gray-600">
155
+ Input any dialogue or situation you want to practice. From business meetings to travel conversations, LangPal adapts to your needs.
156
+ </p>
157
+ </div>
158
+ <div class="feature-card bg-white p-8 rounded-xl transition duration-300">
159
+ <div class="w-14 h-14 gradient-bg rounded-lg flex items-center justify-center mb-6">
160
+ <i class="fas fa-robot text-white text-2xl"></i>
161
+ </div>
162
+ <h3 class="text-xl font-bold mb-3">AI Role-Play</h3>
163
+ <p class="text-gray-600">
164
+ Our AI plays different roles in conversations, helping you prepare for real-life interactions with native speakers.
165
+ </p>
166
+ </div>
167
+ <div class="feature-card bg-white p-8 rounded-xl transition duration-300">
168
+ <div class="w-14 h-14 gradient-bg rounded-lg flex items-center justify-center mb-6">
169
+ <i class="fas fa-chart-line text-white text-2xl"></i>
170
+ </div>
171
+ <h3 class="text-xl font-bold mb-3">Instant Feedback</h3>
172
+ <p class="text-gray-600">
173
+ Get corrections and suggestions on your pronunciation, grammar, and vocabulary immediately after each practice session.
174
+ </p>
175
+ </div>
176
+ </div>
177
+ </div>
178
+ </section>
179
+
180
+ <!-- How It Works Section -->
181
+ <section id="how-it-works" class="py-16">
182
+ <div class="container mx-auto px-6">
183
+ <div class="text-center mb-16">
184
+ <h2 class="text-3xl font-bold mb-4">How LangPal Works</h2>
185
+ <p class="text-lg text-gray-600 max-w-2xl mx-auto">
186
+ Start speaking confidently in just 3 simple steps
187
+ </p>
188
+ </div>
189
+ <div class="flex flex-col md:flex-row items-center">
190
+ <div class="md:w-1/2 mb-12 md:mb-0">
191
+ <div class="relative max-w-md mx-auto">
192
+ <img src="https://images.unsplash.com/photo-1546410531-bb4caa6b424d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1471&q=80"
193
+ alt="Language learning"
194
+ class="rounded-xl shadow-xl">
195
+ <div class="absolute -bottom-6 -right-6 bg-white p-4 rounded-xl shadow-lg">
196
+ <div class="w-14 h-14 gradient-bg rounded-full flex items-center justify-center">
197
+ <i class="fas fa-play text-white"></i>
198
+ </div>
199
+ </div>
200
+ </div>
201
+ </div>
202
+ <div class="md:w-1/2 md:pl-12">
203
+ <div class="mb-8 flex">
204
+ <div class="flex-shrink-0">
205
+ <div class="flex items-center justify-center w-12 h-12 rounded-full gradient-bg text-white font-bold text-xl">
206
+ 1
207
+ </div>
208
+ </div>
209
+ <div class="ml-4">
210
+ <h3 class="text-xl font-bold mb-2">Choose Your Scenario</h3>
211
+ <p class="text-gray-600">
212
+ Select from our library of common situations or create your own custom dialogue to practice.
213
+ </p>
214
+ </div>
215
+ </div>
216
+ <div class="mb-8 flex">
217
+ <div class="flex-shrink-0">
218
+ <div class="flex items-center justify-center w-12 h-12 rounded-full gradient-bg text-white font-bold text-xl">
219
+ 2
220
+ </div>
221
+ </div>
222
+ <div class="ml-4">
223
+ <h3 class="text-xl font-bold mb-2">Start the Conversation</h3>
224
+ <p class="text-gray-600">
225
+ Begin speaking or typing your responses. LangPal will adapt to your pace and language level.
226
+ </p>
227
+ </div>
228
+ </div>
229
+ <div class="flex">
230
+ <div class="flex-shrink-0">
231
+ <div class="flex items-center justify-center w-12 h-12 rounded-full gradient-bg text-white font-bold text-xl">
232
+ 3
233
+ </div>
234
+ </div>
235
+ <div class="ml-4">
236
+ <h3 class="text-xl font-bold mb-2">Receive Feedback</h3>
237
+ <p class="text-gray-600">
238
+ Get instant corrections and suggestions to improve your fluency and accuracy.
239
+ </p>
240
+ </div>
241
+ </div>
242
+ </div>
243
+ </div>
244
+ </div>
245
+ </section>
246
+
247
+ <!-- Testimonials Section -->
248
+ <section id="testimonials" class="py-16 bg-gray-50">
249
+ <div class="container mx-auto px-6">
250
+ <div class="text-center mb-16">
251
+ <h2 class="text-3xl font-bold mb-4">What Our Users Say</h2>
252
+ <p class="text-lg text-gray-600 max-w-2xl mx-auto">
253
+ Join thousands of language learners who improved their speaking skills with LangPal
254
+ </p>
255
+ </div>
256
+ <div class="grid md:grid-cols-3 gap-8">
257
+ <div class="bg-white p-8 rounded-xl">
258
+ <div class="flex items-center mb-4">
259
+ <img src="https://randomuser.me/api/portraits/women/32.jpg" class="w-12 h-12 rounded-full">
260
+ <div class="ml-4">
261
+ <h4 class="font-bold">Sarah K.</h4>
262
+ <div class="flex text-yellow-400">
263
+ <i class="fas fa-star"></i>
264
+ <i class="fas fa-star"></i>
265
+ <i class="fas fa-star"></i>
266
+ <i class="fas fa-star"></i>
267
+ <i class="fas fa-star"></i>
268
+ </div>
269
+ </div>
270
+ </div>
271
+ <p class="text-gray-600">
272
+ "I was nervous about speaking Spanish before my trip to Mexico. After two weeks with LangPal, I could confidently order food and ask for directions. The role-play feature is amazing!"
273
+ </p>
274
+ </div>
275
+ <div class="bg-white p-8 rounded-xl">
276
+ <div class="flex items-center mb-4">
277
+ <img src="https://randomuser.me/api/portraits/men/54.jpg" class="w-12 h-12 rounded-full">
278
+ <div class="ml-4">
279
+ <h4 class="font-bold">James L.</h4>
280
+ <div class="flex text-yellow-400">
281
+ <i class="fas fa-star"></i>
282
+ <i class="fas fa-star"></i>
283
+ <i class="fas fa-star"></i>
284
+ <i class="fas fa-star"></i>
285
+ <i class="fas fa-star"></i>
286
+ </div>
287
+ </div>
288
+ </div>
289
+ <p class="text-gray-600">
290
+ "As a business professional, I needed to improve my French for client meetings. LangPal's custom scenarios let me practice exactly the conversations I needed. My colleagues noticed the improvement immediately."
291
+ </p>
292
+ </div>
293
+ <div class="bg-white p-8 rounded-xl">
294
+ <div class="flex items-center mb-4">
295
+ <img src="https://randomuser.me/api/portraits/women/68.jpg" class="w-12 h-12 rounded-full">
296
+ <div class="ml-4">
297
+ <h4 class="font-bold">Priya M.</h4>
298
+ <div class="flex text-yellow-400">
299
+ <i class="fas fa-star"></i>
300
+ <i class="fas fa-star"></i>
301
+ <i class="fas fa-star"></i>
302
+ <i class="fas fa-star"></i>
303
+ <i class="fas fa-star-half-alt"></i>
304
+ </div>
305
+ </div>
306
+ </div>
307
+ <p class="text-gray-600">
308
+ "The pronunciation feedback is incredibly accurate. I've tried many apps, but LangPal is the first that actually helped me sound more like a native German speaker."
309
+ </p>
310
+ </div>
311
+ </div>
312
+ </div>
313
+ </section>
314
+
315
+ <!-- CTA Section -->
316
+ <section class="py-16 gradient-bg text-white">
317
+ <div class="container mx-auto px-6 text-center">
318
+ <h2 class="text-3xl font-bold mb-6">Ready to Speak with Confidence?</h2>
319
+ <p class="text-xl mb-8 max-w-2xl mx-auto opacity-90">
320
+ Join thousands of language learners improving their speaking skills with LangPal
321
+ </p>
322
+ <button class="bg-white text-blue-600 px-8 py-3 rounded-full hover:bg-gray-100 transition font-bold shadow-lg">
323
+ Start Practicing Free
324
+ </button>
325
+ </div>
326
+ </section>
327
+
328
+ <!-- FAQ Section -->
329
+ <section id="faq" class="py-16">
330
+ <div class="container mx-auto px-6">
331
+ <div class="text-center mb-16">
332
+ <h2 class="text-3xl font-bold mb-4">Frequently Asked Questions</h2>
333
+ <p class="text-lg text-gray-600 max-w-2xl mx-auto">
334
+ Everything you need to know about LangPal
335
+ </p>
336
+ </div>
337
+ <div class="max-w-3xl mx-auto">
338
+ <div class="mb-6 border-b pb-4">
339
+ <button class="flex justify-between items-center w-full text-left font-medium">
340
+ <span>Is LangPal really free?</span>
341
+ <i class="fas fa-chevron-down text-blue-600"></i>
342
+ </button>
343
+ <div class="mt-2 text-gray-600">
344
+ Yes! LangPal offers a completely free tier with access to all core features. We also offer a premium version with additional advanced features for those who want even more practice options.
345
+ </div>
346
+ </div>
347
+ <div class="mb-6 border-b pb-4">
348
+ <button class="flex justify-between items-center w-full text-left font-medium">
349
+ <span>Which languages does LangPal support?</span>
350
+ <i class="fas fa-chevron-down text-blue-600"></i>
351
+ </button>
352
+ <div class="mt-2 text-gray-600">
353
+ Currently, LangPal supports English, Spanish, French, German, Italian, Portuguese, Japanese, and Mandarin Chinese. We're constantly adding more languages based on user demand.
354
+ </div>
355
+ </div>
356
+ <div class="mb-6 border-b pb-4">
357
+ <button class="flex justify-between items-center w-full text-left font-medium">
358
+ <span>How does the AI role-play work?</span>
359
+ <i class="fas fa-chevron-down text-blue-600"></i>
360
+ </button>
361
+ <div class="mt-2 text-gray-600">
362
+ Our AI can take on different personas (waiter, interviewer, friend, etc.) and respond naturally to your input. You can specify the scenario and the AI will adapt its responses accordingly to create a realistic conversation experience.
363
+ </div>
364
+ </div>
365
+ <div class="mb-6 border-b pb-4">
366
+ <button class="flex justify-between items-center w-full text-left font-medium">
367
+ <span>Can I use LangPal without speaking?</span>
368
+ <i class="fas fa-chevron-down text-blue-600"></i>
369
+ </button>
370
+ <div class="mt-2 text-gray-600">
371
+ Absolutely! While we encourage speaking practice for the best results, you can also type your responses if you're in a situation where you can't speak aloud.
372
+ </div>
373
+ </div>
374
+ </div>
375
+ </div>
376
+ </section>
377
+
378
+ <!-- Footer -->
379
+ <footer class="bg-gray-900 text-white py-12">
380
+ <div class="container mx-auto px-6">
381
+ <div class="grid md:grid-cols-4 gap-8">
382
+ <div>
383
+ <div class="flex items-center space-x-2 mb-4">
384
+ <div class="w-10 h-10 rounded-full gradient-bg flex items-center justify-center">
385
+ <i class="fas fa-comments text-white"></i>
386
+ </div>
387
+ <span class="text-xl font-bold">LangPal</span>
388
+ </div>
389
+ <p class="text-gray-400">
390
+ Your AI-powered language practice partner helping you speak with confidence.
391
+ </p>
392
+ <div class="flex space-x-4 mt-6">
393
+ <a href="#" class="text-gray-400 hover:text-white">
394
+ <i class="fab fa-twitter"></i>
395
+ </a>
396
+ <a href="#" class="text-gray-400 hover:text-white">
397
+ <i class="fab fa-facebook"></i>
398
+ </a>
399
+ <a href="#" class="text-gray-400 hover:text-white">
400
+ <i class="fab fa-instagram"></i>
401
+ </a>
402
+ <a href="#" class="text-gray-400 hover:text-white">
403
+ <i class="fab fa-linkedin"></i>
404
+ </a>
405
+ </div>
406
+ </div>
407
+ <div>
408
+ <h3 class="font-bold text-lg mb-4">Product</h3>
409
+ <ul class="space-y-2">
410
+ <li><a href="#" class="text-gray-400 hover:text-white">Features</a></li>
411
+ <li><a href="#" class="text-gray-400 hover:text-white">Pricing</a></li>
412
+ <li><a href="#" class="text-gray-400 hover:text-white">Languages</a></li>
413
+ <li><a href="#" class="text-gray-400 hover:text-white">Download</a></li>
414
+ </ul>
415
+ </div>
416
+ <div>
417
+ <h3 class="font-bold text-lg mb-4">Company</h3>
418
+ <ul class="space-y-2">
419
+ <li><a href="#" class="text-gray-400 hover:text-white">About Us</a></li>
420
+ <li><a href="#" class="text-gray-400 hover:text-white">Careers</a></li>
421
+ <li><a href="#" class="text-gray-400 hover:text-white">Blog</a></li>
422
+ <li><a href="#" class="text-gray-400 hover:text-white">Contact</a></li>
423
+ </ul>
424
+ </div>
425
+ <div>
426
+ <h3 class="font-bold text-lg mb-4">Support</h3>
427
+ <ul class="space-y-2">
428
+ <li><a href="#" class="text-gray-400 hover:text-white">Help Center</a></li>
429
+ <li><a href="#" class="text-gray-400 hover:text-white">Community</a></li>
430
+ <li><a href="#" class="text-gray-400 hover:text-white">Privacy Policy</a></li>
431
+ <li><a href="#" class="text-gray-400 hover:text-white">Terms of Service</a></li>
432
+ </ul>
433
+ </div>
434
+ </div>
435
+ <div class="border-t border-gray-800 mt-12 pt-8 text-center text-gray-400">
436
+ <p>© 2023 LangPal. All rights reserved.</p>
437
+ </div>
438
+ </div>
439
+ </footer>
440
+
441
+ <script>
442
+ // Simple FAQ toggle functionality
443
+ document.querySelectorAll('#faq button').forEach(button => {
444
+ button.addEventListener('click', () => {
445
+ const answer = button.nextElementSibling;
446
+ const icon = button.querySelector('i');
447
+
448
+ if (answer.style.maxHeight) {
449
+ answer.style.maxHeight = null;
450
+ icon.classList.remove('fa-chevron-up');
451
+ icon.classList.add('fa-chevron-down');
452
+ } else {
453
+ answer.style.maxHeight = answer.scrollHeight + 'px';
454
+ icon.classList.remove('fa-chevron-down');
455
+ icon.classList.add('fa-chevron-up');
456
+ }
457
+ });
458
+ });
459
+
460
+ // Smooth scrolling for navigation links
461
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
462
+ anchor.addEventListener('click', function (e) {
463
+ e.preventDefault();
464
+ document.querySelector(this.getAttribute('href')).scrollIntoView({
465
+ behavior: 'smooth'
466
+ });
467
+ });
468
+ });
469
+ </script>
470
+ <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - <a href="https://enzostvs-deepsite.hf.space?remix=kubodimo0/langpal" style="color: #fff;text-decoration: underline;" target="_blank" >🧬 Remix</a></p></body>
471
+ </html>