Techprotol commited on
Commit
feaa1b1
·
verified ·
1 Parent(s): 6121a55

Create a modern, free AI UGC Ads Generator website with the following features: 1. Easy Google Login/Signup: Users can sign up or log in instantly using their Google account—no complex registration process. 2. No Credit Card Required: The platform must be 100% free to use with zero payment steps or hidden charges. 3. Product URL-Based Ad Generation: Users paste a product URL (like from Amazon, Shopify, etc.), and the AI automatically generates ad scripts and scenes based on the product details. 4. Captivating Captions & Hashtags: Automatically generate catchy captions and trending hashtags designed for Instagram Reels, TikTok, and YouTube Shorts. 5. Free Talking AI Avatars: Offer realistic, diverse AI avatars (male/female) that speak naturally in the video using the ad script. 6. High-Quality Lip Sync (Better Than HeyGen): Avatars should have advanced lip-syncing with natural expressions, available forever for free. 7. Free Ad Generation Minutes: Users get daily free minutes (e.g., 10 minutes per day) to generate ads without limits or subscriptions. 8. No Watermarks & Fast Output: All videos should be watermark-free and generated within seconds (under 1 minute per video). 9. One-Click Download: Users can download the ad directly to their phone or computer gallery with a single click. And website name is chan.ai - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +453 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Chan Ai
3
- emoji: 📚
4
- colorFrom: blue
5
- colorTo: red
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: chan-ai
3
+ emoji: 🐳
4
+ colorFrom: green
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,453 @@
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>chan.ai - Free AI UGC Ads Generator</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
9
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
10
+ <script src="https://accounts.google.com/gsi/client" async defer></script>
11
+ <style>
12
+ body {
13
+ font-family: 'Poppins', sans-serif;
14
+ background-color: #f8fafc;
15
+ }
16
+ .gradient-bg {
17
+ background: linear-gradient(135deg, #6b46c1 0%, #4299e1 100%);
18
+ }
19
+ .avatar-card:hover {
20
+ transform: translateY(-5px);
21
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
22
+ }
23
+ .pulse-animation {
24
+ animation: pulse 2s infinite;
25
+ }
26
+ @keyframes pulse {
27
+ 0% { transform: scale(1); }
28
+ 50% { transform: scale(1.05); }
29
+ 100% { transform: scale(1); }
30
+ }
31
+ </style>
32
+ </head>
33
+ <body>
34
+ <!-- Navigation -->
35
+ <nav class="bg-white shadow-sm">
36
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
37
+ <div class="flex justify-between h-16">
38
+ <div class="flex items-center">
39
+ <div class="flex-shrink-0 flex items-center">
40
+ <i class="fas fa-ad text-purple-600 text-2xl mr-2"></i>
41
+ <span class="text-xl font-bold text-gray-900">chan.ai</span>
42
+ </div>
43
+ </div>
44
+ <div class="hidden sm:ml-6 sm:flex sm:items-center">
45
+ <div id="g_id_onload"
46
+ data-client_id="YOUR_GOOGLE_CLIENT_ID"
47
+ data-context="signin"
48
+ data-ux_mode="popup"
49
+ data-callback="handleCredentialResponse"
50
+ data-auto_prompt="false">
51
+ </div>
52
+ <div class="g_id_signin"
53
+ data-type="standard"
54
+ data-shape="rectangular"
55
+ data-theme="outline"
56
+ data-text="signin_with"
57
+ data-size="large"
58
+ data-logo_alignment="left">
59
+ </div>
60
+ </div>
61
+ <div class="-mr-2 flex items-center sm:hidden">
62
+ <button type="button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-purple-500" aria-controls="mobile-menu" aria-expanded="false">
63
+ <span class="sr-only">Open main menu</span>
64
+ <i class="fas fa-bars"></i>
65
+ </button>
66
+ </div>
67
+ </div>
68
+ </div>
69
+ </nav>
70
+
71
+ <!-- Hero Section -->
72
+ <div class="gradient-bg text-white">
73
+ <div class="max-w-7xl mx-auto py-16 px-4 sm:py-24 sm:px-6 lg:px-8">
74
+ <div class="text-center">
75
+ <h1 class="text-4xl font-extrabold tracking-tight sm:text-5xl lg:text-6xl">
76
+ <span class="text-yellow-300">AI UGC Ads</span> Generator
77
+ </h1>
78
+ <p class="mt-6 max-w-lg mx-auto text-xl">
79
+ <span class="font-bold">Free Forever</span> - No credit card - No watermarks - Instant results
80
+ </p>
81
+ <div class="mt-4 grid grid-cols-2 gap-2 max-w-md mx-auto">
82
+ <div class="flex items-center">
83
+ <i class="fas fa-check-circle text-green-400 mr-2"></i>
84
+ <span>Perfect Lip Sync</span>
85
+ </div>
86
+ <div class="flex items-center">
87
+ <i class="fas fa-check-circle text-green-400 mr-2"></i>
88
+ <span>10+ Free Minutes Daily</span>
89
+ </div>
90
+ <div class="flex items-center">
91
+ <i class="fas fa-check-circle text-green-400 mr-2"></i>
92
+ <span>Realistic AI Avatars</span>
93
+ </div>
94
+ <div class="flex items-center">
95
+ <i class="fas fa-check-circle text-green-400 mr-2"></i>
96
+ <span>Instant Downloads</span>
97
+ </div>
98
+ </div>
99
+ <div class="mt-10 flex justify-center">
100
+ <div class="rounded-md shadow">
101
+ <div id="mobile_g_id_onload"
102
+ data-client_id="YOUR_GOOGLE_CLIENT_ID"
103
+ data-context="signin"
104
+ data-ux_mode="popup"
105
+ data-callback="handleCredentialResponse"
106
+ data-auto_prompt="false">
107
+ </div>
108
+ <div class="g_id_signin"
109
+ data-type="standard"
110
+ data-shape="rectangular"
111
+ data-theme="outline"
112
+ data-text="continue_with"
113
+ data-size="large"
114
+ data-logo_alignment="left"
115
+ data-width="300">
116
+ </div>
117
+ </div>
118
+ </div>
119
+ </div>
120
+ </div>
121
+ </div>
122
+
123
+ <!-- How It Works Section -->
124
+ <div class="py-16 bg-white">
125
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
126
+ <div class="lg:text-center">
127
+ <h2 class="text-base text-purple-600 font-semibold tracking-wide uppercase">3 Simple Steps</h2>
128
+ <p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl">
129
+ How FreeAI Ads Works
130
+ </p>
131
+ </div>
132
+
133
+ <div class="mt-10">
134
+ <div class="space-y-10 md:space-y-0 md:grid md:grid-cols-3 md:gap-x-8 md:gap-y-10">
135
+ <div class="relative">
136
+ <div class="absolute flex items-center justify-center h-12 w-12 rounded-md bg-purple-500 text-white">
137
+ <span class="text-xl font-bold">1</span>
138
+ </div>
139
+ <div class="ml-16">
140
+ <h3 class="text-lg leading-6 font-medium text-gray-900">Paste Product URL</h3>
141
+ <p class="mt-2 text-base text-gray-500">
142
+ Simply paste your product link from Amazon, Shopify, or any e-commerce store.
143
+ </p>
144
+ </div>
145
+ </div>
146
+
147
+ <div class="relative">
148
+ <div class="absolute flex items-center justify-center h-12 w-12 rounded-md bg-purple-500 text-white">
149
+ <span class="text-xl font-bold">2</span>
150
+ </div>
151
+ <div class="ml-16">
152
+ <h3 class="text-lg leading-6 font-medium text-gray-900">AI Generates Content</h3>
153
+ <p class="mt-2 text-base text-gray-500">
154
+ Our AI creates engaging scripts, captions, hashtags and selects the perfect avatar.
155
+ </p>
156
+ </div>
157
+ </div>
158
+
159
+ <div class="relative">
160
+ <div class="absolute flex items-center justify-center h-12 w-12 rounded-md bg-purple-500 text-white">
161
+ <span class="text-xl font-bold">3</span>
162
+ </div>
163
+ <div class="ml-16">
164
+ <h3 class="text-lg leading-6 font-medium text-gray-900">Download & Share</h3>
165
+ <p class="mt-2 text-base text-gray-500">
166
+ Get your professional UGC ad instantly with perfect lip sync - no watermarks!
167
+ </p>
168
+ </div>
169
+ </div>
170
+ </div>
171
+ </div>
172
+ </div>
173
+ </div>
174
+
175
+ <!-- Generator Section -->
176
+ <div class="py-16 bg-gray-50">
177
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
178
+ <div class="bg-white shadow-xl rounded-lg overflow-hidden">
179
+ <div class="p-6 sm:p-10">
180
+ <h2 class="text-2xl font-bold text-gray-900 mb-6">Generate Your Free UGC Ad</h2>
181
+
182
+ <div id="step1" class="space-y-6">
183
+ <div>
184
+ <label for="product-url" class="block text-sm font-medium text-gray-700">Product URL</label>
185
+ <div class="mt-1 relative rounded-md shadow-sm">
186
+ <input type="text" id="product-url" class="focus:ring-purple-500 focus:border-purple-500 block w-full pr-10 sm:text-sm border-gray-300 rounded-md p-3 border" placeholder="https://www.amazon.com/your-product">
187
+ <div class="absolute inset-y-0 right-0 pr-3 flex items-center pointer-events-none">
188
+ <i class="fas fa-link text-gray-400"></i>
189
+ </div>
190
+ </div>
191
+ </div>
192
+
193
+ <div class="flex justify-end">
194
+ <button onclick="analyzeProduct()" class="pulse-animation inline-flex items-center px-6 py-3 border border-transparent text-base font-medium rounded-md shadow-sm text-white bg-purple-600 hover:bg-purple-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-purple-500">
195
+ Analyze Product <i class="fas fa-arrow-right ml-2"></i>
196
+ </button>
197
+ </div>
198
+ </div>
199
+
200
+ <div id="step2" class="hidden space-y-6">
201
+ <div class="grid grid-cols-1 gap-6 sm:grid-cols-2">
202
+ <div>
203
+ <h3 class="text-lg font-medium text-gray-900 mb-3">AI-Generated Script</h3>
204
+ <div class="bg-gray-50 p-4 rounded-md h-64 overflow-y-auto">
205
+ <p id="generated-script" class="text-gray-700">"Hey everyone! I just discovered this amazing [Product Name] and I had to share it with you. It's completely changed my [related activity] experience. The [key feature] is absolutely incredible - it makes [specific benefit] so much easier. I was skeptical at first, but after trying it for [time period], I'm completely hooked! If you're looking for [product category solution], this is definitely worth checking out. Link in bio!"</p>
206
+ </div>
207
+ <div class="mt-2 flex space-x-2">
208
+ <button onclick="regenerateScript()" class="text-sm text-purple-600 hover:text-purple-800">
209
+ <i class="fas fa-sync-alt mr-1"></i> Regenerate
210
+ </button>
211
+ <button onclick="copyToClipboard('generated-script')" class="text-sm text-purple-600 hover:text-purple-800">
212
+ <i class="fas fa-copy mr-1"></i> Copy
213
+ </button>
214
+ </div>
215
+ </div>
216
+
217
+ <div>
218
+ <h3 class="text-lg font-medium text-gray-900 mb-3">Captions & Hashtags</h3>
219
+ <div class="bg-gray-50 p-4 rounded-md h-64 overflow-y-auto">
220
+ <p id="generated-captions" class="text-gray-700">"Game changer alert! 🚀 This [Product Name] has completely upgraded my [related activity] experience. Who else loves discovering amazing products like this? #ProductCategory #MustHave #GameChanger #LifeHack #AmazonFinds #TikTokMadeMeBuyIt #Unboxing #ProductReview #TryItTuesday #ShoppingHaul"</p>
221
+ </div>
222
+ <div class="mt-2 flex space-x-2">
223
+ <button onclick="regenerateCaptions()" class="text-sm text-purple-600 hover:text-purple-800">
224
+ <i class="fas fa-sync-alt mr-1"></i> Regenerate
225
+ </button>
226
+ <button onclick="copyToClipboard('generated-captions')" class="text-sm text-purple-600 hover:text-purple-800">
227
+ <i class="fas fa-copy mr-1"></i> Copy
228
+ </button>
229
+ </div>
230
+ </div>
231
+ </div>
232
+
233
+ <div>
234
+ <h3 class="text-lg font-medium text-gray-900 mb-3">Premium AI Avatars with Perfect Lip Sync</h3>
235
+ <p class="text-sm text-gray-500 mb-3">Our avatars have better lip sync than HeyGen - and they're free!</p>
236
+ <div class="grid grid-cols-3 sm:grid-cols-4 md:grid-cols-6 gap-4">
237
+ <!-- Avatar Options -->
238
+ <div class="avatar-card cursor-pointer transition duration-300 ease-in-out" onclick="selectAvatar(this, 'avatar1')">
239
+ <div class="bg-gray-100 rounded-lg overflow-hidden">
240
+ <img src="https://randomuser.me/api/portraits/women/44.jpg" alt="Avatar 1" class="w-full h-auto">
241
+ </div>
242
+ <p class="text-center mt-2 text-sm font-medium">Sophia</p>
243
+ <div class="text-center text-xs text-purple-500">Best for Beauty</div>
244
+ </div>
245
+ <div class="avatar-card cursor-pointer transition duration-300 ease-in-out" onclick="selectAvatar(this, 'avatar2')">
246
+ <div class="bg-gray-100 rounded-lg overflow-hidden">
247
+ <img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Avatar 2" class="w-full h-auto">
248
+ </div>
249
+ <p class="text-center mt-2 text-sm font-medium">James</p>
250
+ <div class="text-center text-xs text-purple-500">Best for Tech</div>
251
+ </div>
252
+ <div class="avatar-card cursor-pointer transition duration-300 ease-in-out" onclick="selectAvatar(this, 'avatar3')">
253
+ <div class="bg-gray-100 rounded-lg overflow-hidden">
254
+ <img src="https://randomuser.me/api/portraits/women/68.jpg" alt="Avatar 3" class="w-full h-auto">
255
+ </div>
256
+ <p class="text-center mt-2 text-sm font-medium">Emma</p>
257
+ <div class="text-center text-xs text-purple-500">Most Popular</div>
258
+ </div>
259
+ <div class="avatar-card cursor-pointer transition duration-300 ease-in-out" onclick="selectAvatar(this, 'avatar4')">
260
+ <div class="bg-gray-100 rounded-lg overflow-hidden">
261
+ <img src="https://randomuser.me/api/portraits/men/75.jpg" alt="Avatar 4" class="w-full h-auto">
262
+ </div>
263
+ <p class="text-center mt-2 text-sm font-medium">Michael</p>
264
+ <div class="text-center text-xs text-purple-500">Best for Fitness</div>
265
+ </div>
266
+ <div class="avatar-card cursor-pointer transition duration-300 ease-in-out" onclick="selectAvatar(this, 'avatar5')">
267
+ <div class="bg-gray-100 rounded-lg overflow-hidden">
268
+ <img src="https://randomuser.me/api/portraits/women/90.jpg" alt="Avatar 5" class="w-full h-auto">
269
+ </div>
270
+ <p class="text-center mt-2 text-sm font-medium">Olivia</p>
271
+ <div class="text-center text-xs text-purple-500">Best for Fashion</div>
272
+ </div>
273
+ <div class="avatar-card cursor-pointer transition duration-300 ease-in-out" onclick="selectAvatar(this, 'avatar6')">
274
+ <div class="bg-gray-100 rounded-lg overflow-hidden">
275
+ <img src="https://randomuser.me/api/portraits/men/95.jpg" alt="Avatar 6" class="w-full h-auto">
276
+ </div>
277
+ <p class="text-center mt-2 text-sm font-medium">David</p>
278
+ <div class="text-center text-xs text-purple-500">Best for Business</div>
279
+ </div>
280
+ </div>
281
+ </div>
282
+
283
+ <div class="flex justify-between">
284
+ <button onclick="backToStep1()" class="inline-flex items-center px-4 py-2 border border-gray-300 shadow-sm text-base font-medium rounded-md text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-purple-500">
285
+ <i class="fas fa-arrow-left mr-2"></i> Back
286
+ </button>
287
+ <button onclick="generateVideo()" class="pulse-animation inline-flex items-center px-6 py-3 border border-transparent text-base font-medium rounded-md shadow-sm text-white bg-purple-600 hover:bg-purple-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-purple-500">
288
+ Generate Video <i class="fas fa-video ml-2"></i>
289
+ </button>
290
+ </div>
291
+ </div>
292
+
293
+ <div id="step3" class="hidden space-y-6">
294
+ <div class="text-center py-8">
295
+ <div class="mx-auto flex items-center justify-center h-12 w-12 rounded-full bg-green-100">
296
+ <i class="fas fa-check text-green-600 text-xl"></i>
297
+ </div>
298
+ <h3 class="mt-3 text-lg font-medium text-gray-900">Your UGC Ad is Ready!</h3>
299
+ <p class="mt-2 text-sm text-gray-500">Download your high-quality video with perfect lip sync.</p>
300
+
301
+ <div class="mt-6 flex justify-center">
302
+ <video id="generated-video" controls class="w-full max-w-lg rounded-lg shadow-lg border border-gray-200">
303
+ <source src="#" type="video/mp4">
304
+ Your browser does not support the video tag.
305
+ </video>
306
+ </div>
307
+
308
+ <div class="mt-6 flex justify-center space-x-4">
309
+ <button onclick="downloadVideo()" class="inline-flex items-center px-6 py-3 border border-transparent text-base font-medium rounded-md shadow-sm text-white bg-purple-600 hover:bg-purple-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-purple-500">
310
+ <i class="fas fa-download mr-2"></i> Download
311
+ </button>
312
+ <button onclick="generateAnother()" class="inline-flex items-center px-6 py-3 border border-gray-300 shadow-sm text-base font-medium rounded-md text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-purple-500">
313
+ <i class="fas fa-redo mr-2"></i> Create Another
314
+ </button>
315
+ </div>
316
+ </div>
317
+ </div>
318
+ </div>
319
+ </div>
320
+ </div>
321
+ </div>
322
+
323
+ <!-- Features Section -->
324
+ <div class="py-16 bg-white">
325
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
326
+ <div class="lg:text-center">
327
+ <h2 class="text-base text-purple-600 font-semibold tracking-wide uppercase">Why Choose Us</h2>
328
+ <p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl">
329
+ Better Than Paid Alternatives
330
+ </p>
331
+ </div>
332
+
333
+ <div class="mt-10">
334
+ <div class="space-y-10 md:space-y-0 md:grid md:grid-cols-2 md:gap-x-8 md:gap-y-10">
335
+ <div class="relative">
336
+ <div class="absolute flex items-center justify-center h-12 w-12 rounded-md bg-purple-500 text-white">
337
+ <i class="fas fa-infinity text-xl"></i>
338
+ </div>
339
+ <div class="ml-16">
340
+ <h3 class="text-lg leading-6 font-medium text-gray-900">Unlimited Free Minutes</h3>
341
+ <p class="mt-2 text-base text-gray-500">
342
+ Generate at least 10 minutes of video content daily - completely free with no watermarks.
343
+ </p>
344
+ </div>
345
+ </div>
346
+
347
+ <div class="relative">
348
+ <div class="absolute flex items-center justify-center h-12 w-12 rounded-md bg-purple-500 text-white">
349
+ <i class="fas fa-credit-card text-xl"></i>
350
+ </div>
351
+ <div class="ml-16">
352
+ <h3 class="text-lg leading-6 font-medium text-gray-900">No Credit Card Needed</h3>
353
+ <p class="mt-2 text-base text-gray-500">
354
+ 100% free forever. We'll never ask for your payment information.
355
+ </p>
356
+ </div>
357
+ </div>
358
+
359
+ <div class="relative">
360
+ <div class="absolute flex items-center justify-center h-12 w-12 rounded-md bg-purple-500 text-white">
361
+ <i class="fas fa-lips text-xl"></i>
362
+ </div>
363
+ <div class="ml-16">
364
+ <h3 class="text-lg leading-6 font-medium text-gray-900">Perfect Lip Sync</h3>
365
+ <p class="mt-2 text-base text-gray-500">
366
+ Our AI avatars speak with flawless lip synchronization that beats paid alternatives.
367
+ </p>
368
+ </div>
369
+ </div>
370
+
371
+ <div class="relative">
372
+ <div class="absolute flex items-center justify-center h-12 w-12 rounded-md bg-purple-500 text-white">
373
+ <i class="fas fa-users text-xl"></i>
374
+ </div>
375
+ <div class="ml-16">
376
+ <h3 class="text-lg leading-6 font-medium text-gray-900">Diverse AI Avatars</h3>
377
+ <p class="mt-2 text-base text-gray-500">
378
+ Choose from multiple realistic human avatars - male, female, and various ethnicities.
379
+ </p>
380
+ </div>
381
+ </div>
382
+ </div>
383
+ </div>
384
+ </div>
385
+ </div>
386
+
387
+ <!-- Free Minutes Section -->
388
+ <div class="py-16 bg-white">
389
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
390
+ <div class="inline-flex items-center px-6 py-4 rounded-full bg-purple-100">
391
+ <i class="fas fa-clock text-purple-600 text-2xl mr-3"></i>
392
+ <span class="text-xl font-bold text-gray-900">10 Free Minutes Daily</span>
393
+ </div>
394
+ <p class="mt-6 max-w-2xl mx-auto text-lg text-gray-600">
395
+ Generate unlimited ads with your daily free minutes. No subscriptions, no limits.
396
+ </p>
397
+ </div>
398
+ </div>
399
+
400
+ <!-- Testimonials -->
401
+ <div class="gradient-bg text-white py-16">
402
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
403
+ <div class="lg:text-center">
404
+ <h2 class="text-base text-yellow-300 font-semibold tracking-wide uppercase">Success Stories</h2>
405
+ <p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight sm:text-4xl">
406
+ What Our Users Say
407
+ </p>
408
+ </div>
409
+
410
+ <div class="mt-10 grid grid-cols-1 gap-8 sm:grid-cols-2 lg:grid-cols-3">
411
+ <div class="bg-white bg-opacity-10 p-6 rounded-lg backdrop-filter backdrop-blur-sm">
412
+ <div class="flex items-center">
413
+ <img class="w-12 h-12 rounded-full" src="https://randomuser.me/api/portraits/women/43.jpg" alt="Sarah J.">
414
+ <div class="ml-4">
415
+ <h4 class="text-lg font-medium">Sarah J.</h4>
416
+ <div class="flex text-yellow-300">
417
+ <i class="fas fa-star"></i>
418
+ <i class="fas fa-star"></i>
419
+ <i class="fas fa-star"></i>
420
+ <i class="fas fa-star"></i>
421
+ <i class="fas fa-star"></i>
422
+ </div>
423
+ </div>
424
+ </div>
425
+ <p class="mt-4 text-sm">"I was spending hours creating UGC ads manually. FreeAI Ads cut my work time by 90% and the results are even better than what I was making before!"</p>
426
+ </div>
427
+
428
+ <div class="bg-white bg-opacity-10 p-6 rounded-lg backdrop-filter backdrop-blur-sm">
429
+ <div class="flex items-center">
430
+ <img class="w-12 h-12 rounded-full" src="https://randomuser.me/api/portraits/men/64.jpg" alt="Mike T.">
431
+ <div class="ml-4">
432
+ <h4 class="text-lg font-medium">Mike T.</h4>
433
+ <div class="flex text-yellow-300">
434
+ <i class="fas fa-star"></i>
435
+ <i class="fas fa-star"></i>
436
+ <i class="fas fa-star"></i>
437
+ <i class="fas fa-star"></i>
438
+ <i class="fas fa-star"></i>
439
+ </div>
440
+ </div>
441
+ </div>
442
+ <p class="mt-4 text-sm">"The lip sync is incredible - better than paid tools I've used. I can't believe this is free. My TikTok conversions have doubled since I started using these ads."</p>
443
+ </div>
444
+
445
+ <div class="bg-white bg-opacity-10 p-6 rounded-lg backdrop-filter backdrop-blur-sm">
446
+ <div class="flex items-center">
447
+ <img class="w-12 h-12 rounded-full" src="https://randomuser.me/api/portraits/women/82.jpg" alt="Priya K.">
448
+ <div class="ml-4">
449
+ <h4 class="text-lg font-medium">Priya K.</h4>
450
+ <div class="flex text-yellow-300">
451
+
452
+ <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/chan-ai" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
453
+ </html>