Techprotol commited on
Commit
9b2586c
·
verified ·
1 Parent(s): 04c3855

Build a ai tool which is generate UGC reels for free without any watermark. And also with fre ai avatar talking with ultra lip syncing for free and also easily downloadable - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +470 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Chaiw Ai
3
- emoji: 🌍
4
- colorFrom: indigo
5
- colorTo: indigo
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: chaiw-ai
3
+ emoji: 🐳
4
+ colorFrom: green
5
+ colorTo: purple
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,470 @@
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>AI Reel Generator | Create UGC Reels with AI Avatars</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, #667eea 0%, #764ba2 100%);
12
+ }
13
+ .video-preview {
14
+ aspect-ratio: 9/16;
15
+ background: linear-gradient(45deg, #f3f4f6, #e5e7eb);
16
+ }
17
+ .avatar-option:hover {
18
+ transform: scale(1.05);
19
+ box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
20
+ }
21
+ .progress-bar {
22
+ transition: width 0.3s ease;
23
+ }
24
+ .waveform {
25
+ height: 40px;
26
+ background: repeating-linear-gradient(90deg, #6366f1, #6366f1 2px, #e0e7ff 2px, #e0e7ff 4px);
27
+ }
28
+ @keyframes pulse {
29
+ 0%, 100% { opacity: 1; }
30
+ 50% { opacity: 0.5; }
31
+ }
32
+ .animate-pulse {
33
+ animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
34
+ }
35
+ </style>
36
+ </head>
37
+ <body class="bg-gray-50 font-sans">
38
+ <!-- Header -->
39
+ <header class="gradient-bg text-white shadow-lg">
40
+ <div class="container mx-auto px-4 py-6">
41
+ <div class="flex justify-between items-center">
42
+ <div class="flex items-center space-x-2">
43
+ <i class="fas fa-film text-2xl"></i>
44
+ <h1 class="text-2xl font-bold">AI Reel Generator</h1>
45
+ </div>
46
+ <nav class="hidden md:flex space-x-6">
47
+ <a href="#" class="hover:text-gray-200">Features</a>
48
+ <a href="#" class="hover:text-gray-200">Templates</a>
49
+ <a href="#" class="hover:text-gray-200">Pricing</a>
50
+ <a href="#" class="hover:text-gray-200">FAQ</a>
51
+ </nav>
52
+ <button class="md:hidden text-xl">
53
+ <i class="fas fa-bars"></i>
54
+ </button>
55
+ </div>
56
+ </div>
57
+ </header>
58
+
59
+ <!-- Hero Section -->
60
+ <section class="gradient-bg text-white py-16">
61
+ <div class="container mx-auto px-4 flex flex-col md:flex-row items-center">
62
+ <div class="md:w-1/2 mb-10 md:mb-0">
63
+ <h2 class="text-4xl md:text-5xl font-bold mb-4">Create Stunning UGC Reels with AI</h2>
64
+ <p class="text-xl mb-8">Generate professional-quality reels with ultra-realistic AI avatars and perfect lip-syncing - completely free with no watermarks!</p>
65
+ <div class="flex flex-col sm:flex-row gap-4">
66
+ <button class="bg-white text-indigo-600 px-6 py-3 rounded-full font-semibold hover:bg-gray-100 transition">
67
+ <i class="fas fa-play mr-2"></i> Try It Now
68
+ </button>
69
+ <button class="border border-white text-white px-6 py-3 rounded-full font-semibold hover:bg-white hover:text-indigo-600 transition">
70
+ <i class="fas fa-book mr-2"></i> Learn More
71
+ </button>
72
+ </div>
73
+ </div>
74
+ <div class="md:w-1/2 flex justify-center">
75
+ <div class="video-preview w-80 rounded-xl overflow-hidden shadow-2xl relative">
76
+ <div class="absolute inset-0 flex items-center justify-center">
77
+ <i class="fas fa-play-circle text-6xl text-indigo-500 bg-white rounded-full"></i>
78
+ </div>
79
+ <div class="absolute bottom-0 left-0 right-0 bg-gradient-to-t from-black to-transparent p-4">
80
+ <div class="flex items-center">
81
+ <div class="w-10 h-10 rounded-full bg-indigo-400 mr-3"></div>
82
+ <div>
83
+ <p class="text-white font-medium">AI Avatar</p>
84
+ <p class="text-gray-300 text-sm">Ultra lip-sync</p>
85
+ </div>
86
+ </div>
87
+ </div>
88
+ </div>
89
+ </div>
90
+ </div>
91
+ </section>
92
+
93
+ <!-- Features Section -->
94
+ <section class="py-16 bg-white">
95
+ <div class="container mx-auto px-4">
96
+ <h2 class="text-3xl font-bold text-center mb-12">Powerful Features, Zero Cost</h2>
97
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
98
+ <div class="bg-gray-50 p-6 rounded-xl shadow-sm hover:shadow-md transition">
99
+ <div class="w-14 h-14 bg-indigo-100 rounded-full flex items-center justify-center mb-4">
100
+ <i class="fas fa-user-robot text-indigo-600 text-2xl"></i>
101
+ </div>
102
+ <h3 class="text-xl font-semibold mb-2">AI Avatars</h3>
103
+ <p class="text-gray-600">Choose from 50+ ultra-realistic AI avatars that look and move like real humans.</p>
104
+ </div>
105
+ <div class="bg-gray-50 p-6 rounded-xl shadow-sm hover:shadow-md transition">
106
+ <div class="w-14 h-14 bg-indigo-100 rounded-full flex items-center justify-center mb-4">
107
+ <i class="fas fa-lips text-indigo-600 text-2xl"></i>
108
+ </div>
109
+ <h3 class="text-xl font-semibold mb-2">Perfect Lip-Sync</h3>
110
+ <p class="text-gray-600">Our advanced AI ensures perfect synchronization between avatar lips and your audio.</p>
111
+ </div>
112
+ <div class="bg-gray-50 p-6 rounded-xl shadow-sm hover:shadow-md transition">
113
+ <div class="w-14 h-14 bg-indigo-100 rounded-full flex items-center justify-center mb-4">
114
+ <i class="fas fa-download text-indigo-600 text-2xl"></i>
115
+ </div>
116
+ <h3 class="text-xl font-semibold mb-2">No Watermark</h3>
117
+ <p class="text-gray-600">Download high-quality reels instantly with no watermarks or hidden fees.</p>
118
+ </div>
119
+ </div>
120
+ </div>
121
+ </section>
122
+
123
+ <!-- Generator Tool -->
124
+ <section class="py-16 bg-gray-50">
125
+ <div class="container mx-auto px-4">
126
+ <h2 class="text-3xl font-bold text-center mb-12">Create Your AI Reel</h2>
127
+
128
+ <div class="bg-white rounded-xl shadow-md overflow-hidden">
129
+ <div class="flex flex-col lg:flex-row">
130
+ <!-- Preview Panel -->
131
+ <div class="lg:w-1/3 p-6 border-b lg:border-b-0 lg:border-r border-gray-200">
132
+ <h3 class="text-xl font-semibold mb-4">Preview</h3>
133
+ <div class="video-preview w-full rounded-lg overflow-hidden relative">
134
+ <div id="preview-content" class="absolute inset-0 flex flex-col items-center justify-center p-4 text-center">
135
+ <i class="fas fa-user-robot text-5xl text-indigo-500 mb-4"></i>
136
+ <p class="text-gray-600">Your AI reel will appear here</p>
137
+ </div>
138
+ <div id="waveform" class="waveform absolute bottom-0 left-0 right-0 hidden"></div>
139
+ </div>
140
+ <div id="progress-container" class="mt-4 hidden">
141
+ <div class="flex justify-between text-sm text-gray-500 mb-1">
142
+ <span>Generating...</span>
143
+ <span id="progress-percent">0%</span>
144
+ </div>
145
+ <div class="w-full bg-gray-200 rounded-full h-2">
146
+ <div id="progress-bar" class="progress-bar bg-indigo-600 h-2 rounded-full" style="width: 0%"></div>
147
+ </div>
148
+ </div>
149
+ <button id="download-btn" class="w-full mt-4 bg-indigo-600 text-white py-3 rounded-lg font-semibold hidden">
150
+ <i class="fas fa-download mr-2"></i> Download Reel
151
+ </button>
152
+ </div>
153
+
154
+ <!-- Controls Panel -->
155
+ <div class="lg:w-2/3 p-6">
156
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-6">
157
+ <!-- Script Input -->
158
+ <div class="md:col-span-2">
159
+ <label class="block text-sm font-medium text-gray-700 mb-2">Script for AI Avatar</label>
160
+ <textarea class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500" rows="4" placeholder="Enter what you want your AI avatar to say..."></textarea>
161
+ </div>
162
+
163
+ <!-- Voice Selection -->
164
+ <div>
165
+ <label class="block text-sm font-medium text-gray-700 mb-2">Voice Style</label>
166
+ <select class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500">
167
+ <option>Friendly Female</option>
168
+ <option>Professional Male</option>
169
+ <option>Energetic Teen</option>
170
+ <option>Wise Elder</option>
171
+ <option>Casual Unisex</option>
172
+ </select>
173
+ </div>
174
+
175
+ <!-- Avatar Selection -->
176
+ <div>
177
+ <label class="block text-sm font-medium text-gray-700 mb-2">AI Avatar</label>
178
+ <div class="grid grid-cols-3 gap-3">
179
+ <div class="avatar-option cursor-pointer p-2 rounded-lg border border-gray-200 text-center transition">
180
+ <div class="w-16 h-16 bg-indigo-100 rounded-full mx-auto mb-2 overflow-hidden">
181
+ <img src="https://placehold.co/80x80/6366f1/white?text=AI" class="w-full h-full object-cover">
182
+ </div>
183
+ <span class="text-xs">Business</span>
184
+ </div>
185
+ <div class="avatar-option cursor-pointer p-2 rounded-lg border border-gray-200 text-center transition">
186
+ <div class="w-16 h-16 bg-indigo-100 rounded-full mx-auto mb-2 overflow-hidden">
187
+ <img src="https://placehold.co/80x80/6366f1/white?text=AI" class="w-full h-full object-cover">
188
+ </div>
189
+ <span class="text-xs">Casual</span>
190
+ </div>
191
+ <div class="avatar-option cursor-pointer p-2 rounded-lg border border-gray-200 text-center transition">
192
+ <div class="w-16 h-16 bg-indigo-100 rounded-full mx-auto mb-2 overflow-hidden">
193
+ <img src="https://placehold.co/80x80/6366f1/white?text=AI" class="w-full h-full object-cover">
194
+ </div>
195
+ <span class="text-xs">Influencer</span>
196
+ </div>
197
+ </div>
198
+ </div>
199
+
200
+ <!-- Background Music -->
201
+ <div>
202
+ <label class="block text-sm font-medium text-gray-700 mb-2">Background Music</label>
203
+ <select class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500">
204
+ <option>None</option>
205
+ <option>Upbeat Corporate</option>
206
+ <option>Chill Vibes</option>
207
+ <option>Trendy Pop</option>
208
+ <option>Epic Cinematic</option>
209
+ </select>
210
+ </div>
211
+
212
+ <!-- Video Style -->
213
+ <div>
214
+ <label class="block text-sm font-medium text-gray-700 mb-2">Video Style</label>
215
+ <select class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500">
216
+ <option>Modern Reel</option>
217
+ <option>Product Showcase</option>
218
+ <option>Tutorial Style</option>
219
+ <option>Testimonial</option>
220
+ <option>News Format</option>
221
+ </select>
222
+ </div>
223
+
224
+ <!-- Generate Button -->
225
+ <div class="md:col-span-2">
226
+ <button id="generate-btn" class="w-full bg-indigo-600 text-white py-4 rounded-lg font-semibold hover:bg-indigo-700 transition flex items-center justify-center">
227
+ <i class="fas fa-magic mr-3"></i> Generate AI Reel
228
+ </button>
229
+ </div>
230
+ </div>
231
+ </div>
232
+ </div>
233
+ </div>
234
+ </div>
235
+ </section>
236
+
237
+ <!-- Testimonials -->
238
+ <section class="py-16 bg-white">
239
+ <div class="container mx-auto px-4">
240
+ <h2 class="text-3xl font-bold text-center mb-12">What Creators Are Saying</h2>
241
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
242
+ <div class="bg-gray-50 p-6 rounded-xl">
243
+ <div class="flex items-center mb-4">
244
+ <div class="w-12 h-12 rounded-full bg-indigo-100 mr-4 overflow-hidden">
245
+ <img src="https://randomuser.me/api/portraits/women/44.jpg" class="w-full h-full object-cover">
246
+ </div>
247
+ <div>
248
+ <h4 class="font-semibold">Sarah K.</h4>
249
+ <p class="text-gray-500 text-sm">Content Creator</p>
250
+ </div>
251
+ </div>
252
+ <p class="text-gray-600">"This tool saved me hours of filming and editing. The AI avatars look so real, and my engagement has doubled!"</p>
253
+ <div class="mt-3 text-yellow-400">
254
+ <i class="fas fa-star"></i>
255
+ <i class="fas fa-star"></i>
256
+ <i class="fas fa-star"></i>
257
+ <i class="fas fa-star"></i>
258
+ <i class="fas fa-star"></i>
259
+ </div>
260
+ </div>
261
+ <div class="bg-gray-50 p-6 rounded-xl">
262
+ <div class="flex items-center mb-4">
263
+ <div class="w-12 h-12 rounded-full bg-indigo-100 mr-4 overflow-hidden">
264
+ <img src="https://randomuser.me/api/portraits/men/32.jpg" class="w-full h-full object-cover">
265
+ </div>
266
+ <div>
267
+ <h4 class="font-semibold">Michael T.</h4>
268
+ <p class="text-gray-500 text-sm">Marketing Director</p>
269
+ </div>
270
+ </div>
271
+ <p class="text-gray-600">"The lip-sync is incredible - no one believes it's not a real person. We've scaled our content production 10x."</p>
272
+ <div class="mt-3 text-yellow-400">
273
+ <i class="fas fa-star"></i>
274
+ <i class="fas fa-star"></i>
275
+ <i class="fas fa-star"></i>
276
+ <i class="fas fa-star"></i>
277
+ <i class="fas fa-star"></i>
278
+ </div>
279
+ </div>
280
+ <div class="bg-gray-50 p-6 rounded-xl">
281
+ <div class="flex items-center mb-4">
282
+ <div class="w-12 h-12 rounded-full bg-indigo-100 mr-4 overflow-hidden">
283
+ <img src="https://randomuser.me/api/portraits/women/68.jpg" class="w-full h-full object-cover">
284
+ </div>
285
+ <div>
286
+ <h4 class="font-semibold">Jessica L.</h4>
287
+ <p class="text-gray-500 text-sm">Small Business Owner</p>
288
+ </div>
289
+ </div>
290
+ <p class="text-gray-600">"Free with no watermark? Unbelievable value. My social media has never looked more professional."</p>
291
+ <div class="mt-3 text-yellow-400">
292
+ <i class="fas fa-star"></i>
293
+ <i class="fas fa-star"></i>
294
+ <i class="fas fa-star"></i>
295
+ <i class="fas fa-star"></i>
296
+ <i class="fas fa-star-half-alt"></i>
297
+ </div>
298
+ </div>
299
+ </div>
300
+ </div>
301
+ </section>
302
+
303
+ <!-- FAQ -->
304
+ <section class="py-16 bg-gray-50">
305
+ <div class="container mx-auto px-4">
306
+ <h2 class="text-3xl font-bold text-center mb-12">Frequently Asked Questions</h2>
307
+ <div class="max-w-3xl mx-auto space-y-4">
308
+ <div class="bg-white p-6 rounded-xl shadow-sm">
309
+ <button class="flex justify-between items-center w-full text-left font-medium">
310
+ <span>Is this really free with no watermarks?</span>
311
+ <i class="fas fa-chevron-down text-indigo-500"></i>
312
+ </button>
313
+ <div class="mt-3 text-gray-600 hidden">
314
+ Yes! Unlike other platforms, we don't charge for basic features or add watermarks to your downloads. You can create and download unlimited reels completely free.
315
+ </div>
316
+ </div>
317
+ <div class="bg-white p-6 rounded-xl shadow-sm">
318
+ <button class="flex justify-between items-center w-full text-left font-medium">
319
+ <span>How realistic are the AI avatars?</span>
320
+ <i class="fas fa-chevron-down text-indigo-500"></i>
321
+ </button>
322
+ <div class="mt-3 text-gray-600 hidden">
323
+ Our avatars use cutting-edge neural rendering technology that captures subtle facial expressions and movements. The lip-sync is particularly advanced, matching phoneme movements to your script with 98% accuracy.
324
+ </div>
325
+ </div>
326
+ <div class="bg-white p-6 rounded-xl shadow-sm">
327
+ <button class="flex justify-between items-center w-full text-left font-medium">
328
+ <span>What video formats can I download?</span>
329
+ <i class="fas fa-chevron-down text-indigo-500"></i>
330
+ </button>
331
+ <div class="mt-3 text-gray-600 hidden">
332
+ We support MP4 (1080p and 720p) and MOV formats optimized for social media platforms like Instagram, TikTok, and YouTube Shorts.
333
+ </div>
334
+ </div>
335
+ <div class="bg-white p-6 rounded-xl shadow-sm">
336
+ <button class="flex justify-between items-center w-full text-left font-medium">
337
+ <span>How long does generation take?</span>
338
+ <i class="fas fa-chevron-down text-indigo-500"></i>
339
+ </button>
340
+ <div class="mt-3 text-gray-600 hidden">
341
+ Most reels under 60 seconds generate in 2-3 minutes. Longer videos or complex animations may take up to 5 minutes. You'll receive an email notification when your reel is ready.
342
+ </div>
343
+ </div>
344
+ </div>
345
+ </div>
346
+ </section>
347
+
348
+ <!-- CTA -->
349
+ <section class="py-16 gradient-bg text-white">
350
+ <div class="container mx-auto px-4 text-center">
351
+ <h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to Create Amazing Reels?</h2>
352
+ <p class="text-xl mb-8 max-w-2xl mx-auto">Join thousands of creators who are saving time and increasing engagement with AI-generated content.</p>
353
+ <button class="bg-white text-indigo-600 px-8 py-4 rounded-full font-semibold text-lg hover:bg-gray-100 transition">
354
+ <i class="fas fa-play mr-2"></i> Start Creating Now - It's Free!
355
+ </button>
356
+ </div>
357
+ </section>
358
+
359
+ <!-- Footer -->
360
+ <footer class="bg-gray-900 text-gray-400 py-12">
361
+ <div class="container mx-auto px-4">
362
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8">
363
+ <div>
364
+ <div class="flex items-center space-x-2 mb-4">
365
+ <i class="fas fa-film text-2xl text-indigo-400"></i>
366
+ <span class="text-white font-bold text-xl">AI Reel Generator</span>
367
+ </div>
368
+ <p class="mb-4">The easiest way to create professional UGC reels with AI avatars.</p>
369
+ <div class="flex space-x-4">
370
+ <a href="#" class="hover:text-white"><i class="fab fa-facebook-f"></i></a>
371
+ <a href="#" class="hover:text-white"><i class="fab fa-twitter"></i></a>
372
+ <a href="#" class="hover:text-white"><i class="fab fa-instagram"></i></a>
373
+ <a href="#" class="hover:text-white"><i class="fab fa-tiktok"></i></a>
374
+ </div>
375
+ </div>
376
+ <div>
377
+ <h4 class="text-white font-semibold mb-4">Product</h4>
378
+ <ul class="space-y-2">
379
+ <li><a href="#" class="hover:text-white">Features</a></li>
380
+ <li><a href="#" class="hover:text-white">Templates</a></li>
381
+ <li><a href="#" class="hover:text-white">Pricing</a></li>
382
+ <li><a href="#" class="hover:text-white">API</a></li>
383
+ </ul>
384
+ </div>
385
+ <div>
386
+ <h4 class="text-white font-semibold mb-4">Resources</h4>
387
+ <ul class="space-y-2">
388
+ <li><a href="#" class="hover:text-white">Blog</a></li>
389
+ <li><a href="#" class="hover:text-white">Tutorials</a></li>
390
+ <li><a href="#" class="hover:text-white">Help Center</a></li>
391
+ <li><a href="#" class="hover:text-white">Community</a></li>
392
+ </ul>
393
+ </div>
394
+ <div>
395
+ <h4 class="text-white font-semibold mb-4">Company</h4>
396
+ <ul class="space-y-2">
397
+ <li><a href="#" class="hover:text-white">About Us</a></li>
398
+ <li><a href="#" class="hover:text-white">Careers</a></li>
399
+ <li><a href="#" class="hover:text-white">Privacy Policy</a></li>
400
+ <li><a href="#" class="hover:text-white">Terms of Service</a></li>
401
+ </ul>
402
+ </div>
403
+ </div>
404
+ <div class="border-t border-gray-800 mt-8 pt-8 text-sm text-center">
405
+ <p>© 2023 AI Reel Generator. All rights reserved.</p>
406
+ </div>
407
+ </div>
408
+ </footer>
409
+
410
+ <script>
411
+ // Simple demo functionality
412
+ document.getElementById('generate-btn').addEventListener('click', function() {
413
+ const preview = document.getElementById('preview-content');
414
+ const progressContainer = document.getElementById('progress-container');
415
+ const progressBar = document.getElementById('progress-bar');
416
+ const progressPercent = document.getElementById('progress-percent');
417
+ const downloadBtn = document.getElementById('download-btn');
418
+ const waveform = document.getElementById('waveform');
419
+
420
+ // Show generating state
421
+ preview.innerHTML = '<div class="text-center"><div class="animate-pulse text-4xl mb-4"><i class="fas fa-cog fa-spin"></i></div><p>Generating your AI reel...</p></div>';
422
+ progressContainer.classList.remove('hidden');
423
+ waveform.classList.remove('hidden');
424
+
425
+ // Simulate progress
426
+ let progress = 0;
427
+ const interval = setInterval(() => {
428
+ progress += Math.random() * 10;
429
+ if (progress > 100) progress = 100;
430
+ progressBar.style.width = progress + '%';
431
+ progressPercent.textContent = Math.floor(progress) + '%';
432
+
433
+ if (progress === 100) {
434
+ clearInterval(interval);
435
+ setTimeout(() => {
436
+ preview.innerHTML = '<div class="absolute inset-0 flex items-center justify-center"><i class="fas fa-check-circle text-6xl text-green-500"></i></div>';
437
+ downloadBtn.classList.remove('hidden');
438
+ waveform.classList.add('hidden');
439
+ }, 500);
440
+ }
441
+ }, 300);
442
+ });
443
+
444
+ document.getElementById('download-btn').addEventListener('click', function() {
445
+ alert('Your reel is downloading! (This is a demo - in a real app, the video would download)');
446
+ });
447
+
448
+ // FAQ accordion
449
+ const faqButtons = document.querySelectorAll('#faq button');
450
+ faqButtons.forEach(button => {
451
+ button.addEventListener('click', () => {
452
+ const answer = button.nextElementSibling;
453
+ answer.classList.toggle('hidden');
454
+ const icon = button.querySelector('i');
455
+ icon.classList.toggle('fa-chevron-down');
456
+ icon.classList.toggle('fa-chevron-up');
457
+ });
458
+ });
459
+
460
+ // Avatar selection
461
+ const avatarOptions = document.querySelectorAll('.avatar-option');
462
+ avatarOptions.forEach(option => {
463
+ option.addEventListener('click', () => {
464
+ avatarOptions.forEach(opt => opt.classList.remove('border-indigo-500', 'bg-indigo-50'));
465
+ option.classList.add('border-indigo-500', 'bg-indigo-50');
466
+ });
467
+ });
468
+ </script>
469
+ <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=Techprotol/chaiw-ai" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
470
+ </html>