Archger commited on
Commit
b40dfa6
·
verified ·
1 Parent(s): 58a6a0a

Add 2 files

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +534 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: My Test2
3
- emoji: 🦀
4
- colorFrom: pink
5
- colorTo: pink
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: my-test2
3
+ emoji: 🐳
4
+ colorFrom: blue
5
+ colorTo: blue
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,534 @@
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" class="scroll-smooth">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>ArtAI - Validate the Future of Digital Art</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <script src="https://kit.fontawesome.com/a076d05399.js" crossorigin="anonymous"></script>
9
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/>
10
+ <style>
11
+ @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
12
+
13
+ body {
14
+ font-family: 'Poppins', sans-serif;
15
+ background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
16
+ color: #f8fafc;
17
+ }
18
+
19
+ .gradient-text {
20
+ background: linear-gradient(90deg, #6366f1, #a855f7, #ec4899);
21
+ -webkit-background-clip: text;
22
+ background-clip: text;
23
+ color: transparent;
24
+ }
25
+
26
+ .art-card {
27
+ transition: all 0.3s ease;
28
+ transform-style: preserve-3d;
29
+ }
30
+
31
+ .art-card:hover {
32
+ transform: translateY(-10px) scale(1.03);
33
+ box-shadow: 0 25px 50px -12px rgba(236, 72, 153, 0.25);
34
+ }
35
+
36
+ .floating {
37
+ animation: floating 6s ease-in-out infinite;
38
+ }
39
+
40
+ @keyframes floating {
41
+ 0% { transform: translateY(0px); }
42
+ 50% { transform: translateY(-20px); }
43
+ 100% { transform: translateY(0px); }
44
+ }
45
+
46
+ .language-selector {
47
+ background: rgba(255, 255, 255, 0.1);
48
+ backdrop-filter: blur(10px);
49
+ }
50
+
51
+ .glow {
52
+ box-shadow: 0 0 20px rgba(167, 139, 250, 0.5);
53
+ }
54
+
55
+ .input-glow:focus {
56
+ box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.5);
57
+ }
58
+
59
+ .countdown-number {
60
+ min-width: 2.5rem;
61
+ }
62
+ </style>
63
+ </head>
64
+ <body>
65
+ <!-- Language Selector -->
66
+ <div class="language-selector fixed top-4 right-4 z-50 rounded-full p-2">
67
+ <select id="language-select" class="bg-transparent text-white border-none focus:ring-0 text-sm">
68
+ <option value="en">English</option>
69
+ <option value="es">Español</option>
70
+ <option value="fr">Français</option>
71
+ <option value="de">Deutsch</option>
72
+ <option value="ja">日本語</option>
73
+ <option value="zh">中文</option>
74
+ </select>
75
+ </div>
76
+
77
+ <!-- Hero Section -->
78
+ <section class="min-h-screen flex items-center justify-center relative overflow-hidden pt-20">
79
+ <!-- Animated background elements -->
80
+ <div class="absolute inset-0 overflow-hidden">
81
+ <div class="absolute top-1/4 left-1/4 w-32 h-32 rounded-full bg-purple-500 opacity-20 blur-3xl animate-pulse"></div>
82
+ <div class="absolute top-3/4 right-1/4 w-40 h-40 rounded-full bg-pink-500 opacity-20 blur-3xl animate-pulse delay-300"></div>
83
+ <div class="absolute bottom-1/4 right-1/3 w-28 h-28 rounded-full bg-indigo-500 opacity-20 blur-3xl animate-pulse delay-700"></div>
84
+ </div>
85
+
86
+ <div class="container mx-auto px-6 z-10">
87
+ <div class="flex flex-col lg:flex-row items-center">
88
+ <div class="lg:w-1/2 mb-12 lg:mb-0">
89
+ <h1 class="text-4xl md:text-6xl font-bold mb-6 leading-tight">
90
+ <span class="gradient-text">AI-Generated Art</span><br>
91
+ <span>Is This The Future?</span>
92
+ </h1>
93
+ <p class="text-lg text-gray-300 mb-8 max-w-lg">
94
+ Join our exclusive waitlist to help validate the market for AI-generated artwork.
95
+ Early subscribers will get special access to our platform and discounts.
96
+ </p>
97
+
98
+ <!-- Email Collection Form -->
99
+ <div class="max-w-md bg-white/10 backdrop-blur-md rounded-xl p-6 glow">
100
+ <h3 class="text-xl font-semibold mb-4">Get Early Access</h3>
101
+ <form id="email-form" class="space-y-4">
102
+ <div>
103
+ <input type="email" id="email" placeholder="Your email address"
104
+ class="w-full px-4 py-3 rounded-lg bg-white/5 border border-white/20 input-glow focus:outline-none focus:border-purple-400 transition">
105
+ </div>
106
+ <button type="submit"
107
+ class="w-full bg-gradient-to-r from-purple-600 to-pink-600 text-white font-medium py-3 px-6 rounded-lg hover:opacity-90 transition-all transform hover:scale-[1.02]">
108
+ Join Waitlist
109
+ </button>
110
+ </form>
111
+ <p class="text-xs text-gray-400 mt-3">We respect your privacy. Unsubscribe at any time.</p>
112
+ </div>
113
+
114
+ <div class="mt-8 flex items-center space-x-4">
115
+ <div class="flex -space-x-2">
116
+ <img src="https://images.unsplash.com/photo-1438761681033-6461ffad8d80?w=200&auto=format" class="w-10 h-10 rounded-full border-2 border-white">
117
+ <img src="https://images.unsplash.com/photo-1544005313-94ddf0286df2?w=200&auto=format" class="w-10 h-10 rounded-full border-2 border-white">
118
+ <img src="https://images.unsplash.com/photo-1554151228-14d9def656e4?w=200&auto=format" class="w-10 h-10 rounded-full border-2 border-white">
119
+ </div>
120
+ <div>
121
+ <p class="text-sm font-medium">Join <span class="text-purple-300">1,200+</span> artists and collectors</p>
122
+ <div class="flex items-center">
123
+ <div class="flex text-yellow-400">
124
+ <i class="fas fa-star"></i>
125
+ <i class="fas fa-star"></i>
126
+ <i class="fas fa-star"></i>
127
+ <i class="fas fa-star"></i>
128
+ <i class="fas fa-star"></i>
129
+ </div>
130
+ <span class="text-xs ml-1">5.0 (300+ reviews)</span>
131
+ </div>
132
+ </div>
133
+ </div>
134
+ </div>
135
+
136
+ <div class="lg:w-1/2 relative">
137
+ <div class="relative floating">
138
+ <img src="https://images.unsplash.com/photo-1637858868799-7f26a0640eb6?w=600&auto=format" alt="AI Art Example" class="rounded-2xl shadow-2xl w-full max-w-md mx-auto border-4 border-white/10">
139
+ <div class="absolute -bottom-6 -left-6 w-32 h-32 bg-gradient-to-br from-purple-500 to-pink-500 rounded-2xl -z-10"></div>
140
+ <div class="absolute -top-6 -right-6 w-24 h-24 bg-gradient-to-br from-indigo-500 to-blue-500 rounded-2xl -z-10"></div>
141
+ </div>
142
+ </div>
143
+ </div>
144
+ </div>
145
+ </section>
146
+
147
+ <!-- AI Art Showcase -->
148
+ <section class="py-20 bg-gradient-to-b from-slate-900 to-slate-800">
149
+ <div class="container mx-auto px-6">
150
+ <div class="text-center mb-16">
151
+ <h2 class="text-3xl md:text-4xl font-bold mb-4">Witness the Power of <span class="gradient-text">AI Creativity</span></h2>
152
+ <p class="text-lg text-gray-300 max-w-2xl mx-auto">
153
+ These stunning artworks were generated entirely by artificial intelligence.
154
+ No human artist was involved in the creation process.
155
+ </p>
156
+ </div>
157
+
158
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
159
+ <!-- Art Card 1 -->
160
+ <div class="art-card bg-white/5 rounded-xl overflow-hidden border border-white/10">
161
+ <div class="h-64 overflow-hidden">
162
+ <img src="https://images.unsplash.com/photo-1635070041078-e363dbe005cb?w=600&auto=format" alt="AI Art 1" class="w-full h-full object-cover transition-transform duration-500 hover:scale-110">
163
+ </div>
164
+ <div class="p-6">
165
+ <h3 class="text-xl font-semibold mb-2">Cosmic Dreams</h3>
166
+ <p class="text-gray-400 text-sm mb-4">Generated in 12 seconds using our AI model</p>
167
+ <div class="flex justify-between items-center">
168
+ <span class="text-purple-300 font-medium">$249</span>
169
+ <button class="text-sm bg-white/10 hover:bg-white/20 px-4 py-2 rounded-lg transition">View Details</button>
170
+ </div>
171
+ </div>
172
+ </div>
173
+
174
+ <!-- Art Card 2 -->
175
+ <div class="art-card bg-white/5 rounded-xl overflow-hidden border border-white/10">
176
+ <div class="h-64 overflow-hidden">
177
+ <img src="https://images.unsplash.com/photo-1631679706909-1844bbd07221?w=600&auto=format" alt="AI Art 2" class="w-full h-full object-cover transition-transform duration-500 hover:scale-110">
178
+ </div>
179
+ <div class="p-6">
180
+ <h3 class="text-xl font-semibold mb-2">Neural Nebula</h3>
181
+ <p class="text-gray-400 text-sm mb-4">Generated in 8 seconds using our AI model</p>
182
+ <div class="flex justify-between items-center">
183
+ <span class="text-purple-300 font-medium">$189</span>
184
+ <button class="text-sm bg-white/10 hover:bg-white/20 px-4 py-2 rounded-lg transition">View Details</button>
185
+ </div>
186
+ </div>
187
+ </div>
188
+
189
+ <!-- Art Card 3 -->
190
+ <div class="art-card bg-white/5 rounded-xl overflow-hidden border border-white/10">
191
+ <div class="h-64 overflow-hidden">
192
+ <img src="https://images.unsplash.com/photo-1634117623696-62659227e1a1?w=600&auto=format" alt="AI Art 3" class="w-full h-full object-cover transition-transform duration-500 hover:scale-110">
193
+ </div>
194
+ <div class="p-6">
195
+ <h3 class="text-xl font-semibold mb-2">Digital Utopia</h3>
196
+ <p class="text-gray-400 text-sm mb-4">Generated in 15 seconds using our AI model</p>
197
+ <div class="flex justify-between items-center">
198
+ <span class="text-purple-300 font-medium">$329</span>
199
+ <button class="text-sm bg-white/10 hover:bg-white/20 px-4 py-2 rounded-lg transition">View Details</button>
200
+ </div>
201
+ </div>
202
+ </div>
203
+ </div>
204
+ </div>
205
+ </section>
206
+
207
+ <!-- Value Proposition -->
208
+ <section class="py-20 bg-slate-800">
209
+ <div class="container mx-auto px-6">
210
+ <div class="flex flex-col lg:flex-row items-center">
211
+ <div class="lg:w-1/2 mb-12 lg:mb-0 lg:pr-12">
212
+ <h2 class="text-3xl md:text-4xl font-bold mb-6">Why <span class="gradient-text">AI Art</span> Matters</h2>
213
+ <p class="text-lg text-gray-300 mb-8">
214
+ AI-generated art is revolutionizing the creative industry by making artistic expression
215
+ accessible to everyone while pushing the boundaries of what's possible.
216
+ </p>
217
+
218
+ <div class="space-y-6">
219
+ <div class="flex items-start">
220
+ <div class="bg-purple-500/20 p-3 rounded-lg mr-4">
221
+ <i class="fas fa-bolt text-purple-400"></i>
222
+ </div>
223
+ <div>
224
+ <h3 class="text-xl font-semibold mb-2">Instant Creation</h3>
225
+ <p class="text-gray-400">Generate unique artworks in seconds, not weeks</p>
226
+ </div>
227
+ </div>
228
+
229
+ <div class="flex items-start">
230
+ <div class="bg-pink-500/20 p-3 rounded-lg mr-4">
231
+ <i class="fas fa-infinity text-pink-400"></i>
232
+ </div>
233
+ <div>
234
+ <h3 class="text-xl font-semibold mb-2">Infinite Possibilities</h3>
235
+ <p class="text-gray-400">Explore styles and concepts beyond human imagination</p>
236
+ </div>
237
+ </div>
238
+
239
+ <div class="flex items-start">
240
+ <div class="bg-indigo-500/20 p-3 rounded-lg mr-4">
241
+ <i class="fas fa-dollar-sign text-indigo-400"></i>
242
+ </div>
243
+ <div>
244
+ <h3 class="text-xl font-semibold mb-2">Affordable Art</h3>
245
+ <p class="text-gray-400">High-quality artwork at a fraction of traditional prices</p>
246
+ </div>
247
+ </div>
248
+ </div>
249
+ </div>
250
+
251
+ <div class="lg:w-1/2 relative">
252
+ <div class="relative">
253
+ <img src="https://images.unsplash.com/photo-1626785774573-4b799315345d?w=600&auto=format" alt="AI Art Process" class="rounded-2xl shadow-2xl w-full max-w-md mx-auto border-4 border-white/10">
254
+ <div class="absolute -bottom-6 -right-6 w-32 h-32 bg-gradient-to-br from-pink-500 to-red-500 rounded-2xl -z-10"></div>
255
+ <div class="absolute -top-6 -left-6 w-24 h-24 bg-gradient-to-br from-blue-500 to-cyan-500 rounded-2xl -z-10"></div>
256
+ </div>
257
+ </div>
258
+ </div>
259
+ </div>
260
+ </section>
261
+
262
+ <!-- Testimonials -->
263
+ <section class="py-20 bg-gradient-to-b from-slate-800 to-slate-900">
264
+ <div class="container mx-auto px-6">
265
+ <div class="text-center mb-16">
266
+ <h2 class="text-3xl md:text-4xl font-bold mb-4">What <span class="gradient-text">People Say</span></h2>
267
+ <p class="text-lg text-gray-300 max-w-2xl mx-auto">
268
+ Don't just take our word for it. Here's what early adopters think about AI-generated art.
269
+ </p>
270
+ </div>
271
+
272
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
273
+ <!-- Testimonial 1 -->
274
+ <div class="bg-white/5 rounded-xl p-6 border border-white/10">
275
+ <div class="flex items-center mb-4">
276
+ <img src="https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?w=200&auto=format" class="w-12 h-12 rounded-full mr-4">
277
+ <div>
278
+ <h4 class="font-semibold">Sarah Johnson</h4>
279
+ <p class="text-sm text-gray-400">Digital Artist</p>
280
+ </div>
281
+ </div>
282
+ <p class="text-gray-300 mb-4">
283
+ "As a traditional artist, I was skeptical at first. But AI art has become an incredible tool in my creative process, helping me explore ideas I never would have considered."
284
+ </p>
285
+ <div class="flex text-yellow-400">
286
+ <i class="fas fa-star"></i>
287
+ <i class="fas fa-star"></i>
288
+ <i class="fas fa-star"></i>
289
+ <i class="fas fa-star"></i>
290
+ <i class="fas fa-star"></i>
291
+ </div>
292
+ </div>
293
+
294
+ <!-- Testimonial 2 -->
295
+ <div class="bg-white/5 rounded-xl p-6 border border-white/10">
296
+ <div class="flex items-center mb-4">
297
+ <img src="https://images.unsplash.com/photo-1566492031773-4f4e44671857?w=200&auto=format" class="w-12 h-12 rounded-full mr-4">
298
+ <div>
299
+ <h4 class="font-semibold">Michael Chen</h4>
300
+ <p class="text-sm text-gray-400">Art Collector</p>
301
+ </div>
302
+ </div>
303
+ <p class="text-gray-300 mb-4">
304
+ "The AI-generated pieces in my collection consistently get the most attention from visitors. There's something uniquely captivating about them."
305
+ </p>
306
+ <div class="flex text-yellow-400">
307
+ <i class="fas fa-star"></i>
308
+ <i class="fas fa-star"></i>
309
+ <i class="fas fa-star"></i>
310
+ <i class="fas fa-star"></i>
311
+ <i class="fas fa-star"></i>
312
+ </div>
313
+ </div>
314
+
315
+ <!-- Testimonial 3 -->
316
+ <div class="bg-white/5 rounded-xl p-6 border border-white/10">
317
+ <div class="flex items-center mb-4">
318
+ <img src="https://images.unsplash.com/photo-1580489944761-15a19d654956?w=200&auto=format" class="w-12 h-12 rounded-full mr-4">
319
+ <div>
320
+ <h4 class="font-semibold">Emma Rodriguez</h4>
321
+ <p class="text-sm text-gray-400">Interior Designer</p>
322
+ </div>
323
+ </div>
324
+ <p class="text-gray-300 mb-4">
325
+ "My clients love the unique AI art pieces I incorporate into their spaces. The ability to generate artwork that perfectly matches their style is revolutionary."
326
+ </p>
327
+ <div class="flex text-yellow-400">
328
+ <i class="fas fa-star"></i>
329
+ <i class="fas fa-star"></i>
330
+ <i class="fas fa-star"></i>
331
+ <i class="fas fa-star"></i>
332
+ <i class="fas fa-star-half-alt"></i>
333
+ </div>
334
+ </div>
335
+ </div>
336
+ </div>
337
+ </section>
338
+
339
+ <!-- CTA Section -->
340
+ <section class="py-20 bg-gradient-to-r from-purple-900/50 to-indigo-900/50 relative overflow-hidden">
341
+ <div class="absolute inset-0 overflow-hidden">
342
+ <div class="absolute top-0 left-0 w-full h-full opacity-20">
343
+ <div class="absolute top-1/4 left-1/4 w-64 h-64 rounded-full bg-purple-500 blur-3xl animate-pulse"></div>
344
+ <div class="absolute bottom-1/4 right-1/4 w-72 h-72 rounded-full bg-pink-500 blur-3xl animate-pulse delay-300"></div>
345
+ </div>
346
+ </div>
347
+
348
+ <div class="container mx-auto px-6 relative z-10">
349
+ <div class="max-w-4xl mx-auto text-center">
350
+ <h2 class="text-3xl md:text-5xl font-bold mb-6">Ready to Explore the <span class="gradient-text">Future of Art</span>?</h2>
351
+ <p class="text-xl text-gray-300 mb-8">
352
+ Join our waitlist today and be among the first to experience the next evolution in artistic creation.
353
+ </p>
354
+
355
+ <!-- Countdown Timer -->
356
+ <div class="flex justify-center mb-8">
357
+ <div class="bg-white/10 backdrop-blur-md rounded-xl p-4 flex space-x-4">
358
+ <div class="text-center">
359
+ <div class="countdown-number bg-purple-600 text-white font-bold rounded-lg py-2 px-3 text-xl">07</div>
360
+ <div class="text-xs mt-1 text-gray-300">Days</div>
361
+ </div>
362
+ <div class="text-center">
363
+ <div class="countdown-number bg-pink-600 text-white font-bold rounded-lg py-2 px-3 text-xl">23</div>
364
+ <div class="text-xs mt-1 text-gray-300">Hours</div>
365
+ </div>
366
+ <div class="text-center">
367
+ <div class="countdown-number bg-indigo-600 text-white font-bold rounded-lg py-2 px-3 text-xl">45</div>
368
+ <div class="text-xs mt-1 text-gray-300">Minutes</div>
369
+ </div>
370
+ </div>
371
+ </div>
372
+
373
+ <!-- Email Collection Form -->
374
+ <div class="max-w-md mx-auto bg-white/10 backdrop-blur-md rounded-xl p-6 glow">
375
+ <h3 class="text-xl font-semibold mb-4">Limited Early Access</h3>
376
+ <form id="email-form-2" class="space-y-4">
377
+ <div>
378
+ <input type="email" id="email-2" placeholder="Your email address"
379
+ class="w-full px-4 py-3 rounded-lg bg-white/5 border border-white/20 input-glow focus:outline-none focus:border-purple-400 transition">
380
+ </div>
381
+ <button type="submit"
382
+ class="w-full bg-gradient-to-r from-purple-600 to-pink-600 text-white font-medium py-3 px-6 rounded-lg hover:opacity-90 transition-all transform hover:scale-[1.02]">
383
+ Join Waitlist Now
384
+ </button>
385
+ </form>
386
+ <p class="text-xs text-gray-400 mt-3">Only 247 spots remaining</p>
387
+ </div>
388
+ </div>
389
+ </div>
390
+ </section>
391
+
392
+ <!-- Footer -->
393
+ <footer class="bg-slate-900 py-12">
394
+ <div class="container mx-auto px-6">
395
+ <div class="flex flex-col md:flex-row justify-between items-center">
396
+ <div class="mb-6 md:mb-0">
397
+ <h2 class="text-2xl font-bold gradient-text">ArtAI</h2>
398
+ <p class="text-gray-400 mt-2">Exploring the intersection of art and artificial intelligence</p>
399
+ </div>
400
+
401
+ <div class="flex space-x-6">
402
+ <a href="#" class="text-gray-400 hover:text-white transition">
403
+ <i class="fab fa-twitter text-xl"></i>
404
+ </a>
405
+ <a href="#" class="text-gray-400 hover:text-white transition">
406
+ <i class="fab fa-instagram text-xl"></i>
407
+ </a>
408
+ <a href="#" class="text-gray-400 hover:text-white transition">
409
+ <i class="fab fa-discord text-xl"></i>
410
+ </a>
411
+ <a href="#" class="text-gray-400 hover:text-white transition">
412
+ <i class="fab fa-github text-xl"></i>
413
+ </a>
414
+ </div>
415
+ </div>
416
+
417
+ <div class="border-t border-white/10 mt-8 pt-8 flex flex-col md:flex-row justify-between">
418
+ <div class="text-gray-400 text-sm mb-4 md:mb-0">
419
+ &copy; 2023 ArtAI. All rights reserved.
420
+ </div>
421
+
422
+ <div class="flex flex-wrap gap-4">
423
+ <a href="#" class="text-gray-400 hover:text-white text-sm transition">Privacy Policy</a>
424
+ <a href="#" class="text-gray-400 hover:text-white text-sm transition">Terms of Service</a>
425
+ <a href="#" class="text-gray-400 hover:text-white text-sm transition">Contact Us</a>
426
+ <a href="#" class="text-gray-400 hover:text-white text-sm transition">FAQ</a>
427
+ </div>
428
+ </div>
429
+ </div>
430
+ </footer>
431
+
432
+ <!-- Success Modal -->
433
+ <div id="success-modal" class="fixed inset-0 bg-black/80 z-50 flex items-center justify-center hidden">
434
+ <div class="bg-slate-800 rounded-xl max-w-md w-full p-8 mx-4 relative">
435
+ <button id="close-modal" class="absolute top-4 right-4 text-gray-400 hover:text-white">
436
+ <i class="fas fa-times"></i>
437
+ </button>
438
+ <div class="text-center">
439
+ <div class="w-20 h-20 bg-green-500/20 rounded-full flex items-center justify-center mx-auto mb-6">
440
+ <i class="fas fa-check text-green-400 text-3xl"></i>
441
+ </div>
442
+ <h3 class="text-2xl font-bold mb-2">You're on the list!</h3>
443
+ <p class="text-gray-300 mb-6">
444
+ Thank you for joining our waitlist. We'll be in touch soon with exclusive access to our AI art platform.
445
+ </p>
446
+ <button id="modal-close-btn" class="bg-gradient-to-r from-purple-600 to-pink-600 text-white font-medium py-2 px-6 rounded-lg hover:opacity-90 transition">
447
+ Continue Exploring
448
+ </button>
449
+ </div>
450
+ </div>
451
+ </div>
452
+
453
+ <script>
454
+ // Form submission
455
+ document.getElementById('email-form').addEventListener('submit', function(e) {
456
+ e.preventDefault();
457
+ const email = document.getElementById('email').value;
458
+ if(email) {
459
+ // In a real app, you would send this to your backend
460
+ console.log('Email submitted:', email);
461
+ document.getElementById('success-modal').classList.remove('hidden');
462
+ document.body.style.overflow = 'hidden';
463
+ }
464
+ });
465
+
466
+ document.getElementById('email-form-2').addEventListener('submit', function(e) {
467
+ e.preventDefault();
468
+ const email = document.getElementById('email-2').value;
469
+ if(email) {
470
+ // In a real app, you would send this to your backend
471
+ console.log('Email submitted:', email);
472
+ document.getElementById('success-modal').classList.remove('hidden');
473
+ document.body.style.overflow = 'hidden';
474
+ }
475
+ });
476
+
477
+ // Close modal
478
+ document.getElementById('close-modal').addEventListener('click', function() {
479
+ document.getElementById('success-modal').classList.add('hidden');
480
+ document.body.style.overflow = 'auto';
481
+ });
482
+
483
+ document.getElementById('modal-close-btn').addEventListener('click', function() {
484
+ document.getElementById('success-modal').classList.add('hidden');
485
+ document.body.style.overflow = 'auto';
486
+ });
487
+
488
+ // Language selector functionality (simplified)
489
+ document.getElementById('language-select').addEventListener('change', function() {
490
+ // In a real app, this would change the page language
491
+ console.log('Language changed to:', this.value);
492
+ });
493
+
494
+ // Countdown timer (example)
495
+ function updateCountdown() {
496
+ // This is just for demo purposes
497
+ const days = document.querySelector('.countdown-number:nth-child(1)');
498
+ const hours = document.querySelector('.countdown-number:nth-child(2)');
499
+ const minutes = document.querySelector('.countdown-number:nth-child(3)');
500
+
501
+ // Random changes for demo
502
+ if(Math.random() > 0.7) {
503
+ const current = parseInt(minutes.textContent);
504
+ if(current > 0) minutes.textContent = (current - 1).toString().padStart(2, '0');
505
+ else {
506
+ minutes.textContent = '59';
507
+ const currentHours = parseInt(hours.textContent);
508
+ if(currentHours > 0) hours.textContent = (currentHours - 1).toString().padStart(2, '0');
509
+ else {
510
+ hours.textContent = '23';
511
+ const currentDays = parseInt(days.textContent);
512
+ if(currentDays > 0) days.textContent = (currentDays - 1).toString().padStart(2, '0');
513
+ }
514
+ }
515
+ }
516
+ }
517
+
518
+ setInterval(updateCountdown, 1000);
519
+
520
+ // Animate elements when they come into view
521
+ const observer = new IntersectionObserver((entries) => {
522
+ entries.forEach(entry => {
523
+ if(entry.isIntersecting) {
524
+ entry.target.classList.add('animate__animated', 'animate__fadeInUp');
525
+ }
526
+ });
527
+ }, { threshold: 0.1 });
528
+
529
+ document.querySelectorAll('.art-card, .flex.items-start').forEach(el => {
530
+ observer.observe(el);
531
+ });
532
+ </script>
533
+ <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=Archger/my-test2" style="color: #fff;text-decoration: underline;" target="_blank" >🧬 Remix</a></p></body>
534
+ </html>