ceeeth commited on
Commit
c212bfd
·
verified ·
1 Parent(s): 1153fce

Generate a website which can generate sexy Ai models for creating cool sexy Ai video - Initial Deployment

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +423 -18
  3. prompts.txt +1 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Ai Modelling
3
- emoji: 📚
4
- colorFrom: pink
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: ai-modelling
3
+ emoji: 🐳
4
+ colorFrom: gray
5
+ colorTo: yellow
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,424 @@
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>NexaAI | Next-Gen AI Model Generation</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
9
+ <script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
10
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
11
+ <script src="https://unpkg.com/feather-icons"></script>
12
+ <script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.net.min.js"></script>
13
+ <style>
14
+ .gradient-text {
15
+ background: linear-gradient(45deg, #f43f5e, #8b5cf6);
16
+ -webkit-background-clip: text;
17
+ background-clip: text;
18
+ color: transparent;
19
+ }
20
+ .model-card {
21
+ transition: all 0.3s ease;
22
+ transform-style: preserve-3d;
23
+ }
24
+ .model-card:hover {
25
+ transform: translateY(-10px) scale(1.02);
26
+ box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
27
+ }
28
+ .video-preview {
29
+ border-radius: 16px;
30
+ overflow: hidden;
31
+ box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
32
+ }
33
+ </style>
34
+ </head>
35
+ <body class="bg-gray-900 text-gray-100 font-sans">
36
+ <div id="vanta-bg" class="fixed inset-0 -z-10"></div>
37
+
38
+ <!-- Navigation -->
39
+ <nav class="bg-gray-900/80 backdrop-blur-md border-b border-gray-800 fixed w-full z-50">
40
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
41
+ <div class="flex items-center justify-between h-16">
42
+ <div class="flex items-center">
43
+ <div class="flex-shrink-0">
44
+ <span class="text-2xl font-bold gradient-text">NexaAI</span>
45
+ </div>
46
+ <div class="hidden md:block">
47
+ <div class="ml-10 flex items-baseline space-x-4">
48
+ <a href="#" class="px-3 py-2 rounded-md text-sm font-medium text-white bg-pink-600">Home</a>
49
+ <a href="#" class="px-3 py-2 rounded-md text-sm font-medium text-gray-300 hover:text-white">Models</a>
50
+ <a href="#" class="px-3 py-2 rounded-md text-sm font-medium text-gray-300 hover:text-white">Features</a>
51
+ <a href="#" class="px-3 py-2 rounded-md text-sm font-medium text-gray-300 hover:text-white">Pricing</a>
52
+ <a href="#" class="px-3 py-2 rounded-md text-sm font-medium text-gray-300 hover:text-white">About</a>
53
+ </div>
54
+ </div>
55
+ </div>
56
+ <div class="hidden md:block">
57
+ <div class="ml-4 flex items-center md:ml-6">
58
+ <button class="p-1 rounded-full text-gray-400 hover:text-white focus:outline-none">
59
+ <i data-feather="search"></i>
60
+ </button>
61
+ <button class="ml-4 px-4 py-2 rounded-md bg-gradient-to-r from-pink-600 to-purple-600 text-sm font-medium text-white hover:from-pink-700 hover:to-purple-700 transition-all">
62
+ Get Started
63
+ </button>
64
+ </div>
65
+ </div>
66
+ <div class="-mr-2 flex md:hidden">
67
+ <button type="button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-white hover:bg-gray-700 focus:outline-none" aria-controls="mobile-menu" aria-expanded="false">
68
+ <i data-feather="menu"></i>
69
+ </button>
70
+ </div>
71
+ </div>
72
+ </div>
73
+ </nav>
74
+
75
+ <!-- Hero Section -->
76
+ <section class="pt-32 pb-20 px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto">
77
+ <div class="text-center" data-aos="fade-up">
78
+ <h1 class="text-4xl md:text-6xl font-extrabold mb-6">
79
+ Create Stunning <span class="gradient-text">AI Models</span> <br>For Your Next Project
80
+ </h1>
81
+ <p class="text-xl md:text-2xl text-gray-300 max-w-3xl mx-auto mb-10">
82
+ NexaAI's advanced neural networks generate photorealistic models with customizable features for videos, games, and digital content.
83
+ </p>
84
+ <div class="flex flex-col sm:flex-row justify-center gap-4">
85
+ <button class="px-8 py-4 rounded-lg bg-gradient-to-r from-pink-600 to-purple-600 text-lg font-semibold text-white hover:from-pink-700 hover:to-purple-700 transition-all shadow-lg">
86
+ Generate Your Model Now
87
+ </button>
88
+ <button class="px-8 py-4 rounded-lg border border-gray-700 text-lg font-semibold text-white hover:bg-gray-800/50 transition-all">
89
+ <div class="flex items-center justify-center gap-2">
90
+ <i data-feather="play-circle"></i>
91
+ Watch Demo
92
+ </div>
93
+ </button>
94
+ </div>
95
+ </div>
96
+ </section>
97
+
98
+ <!-- Featured Models -->
99
+ <section class="py-20 px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto">
100
+ <div class="text-center mb-16" data-aos="fade-up">
101
+ <h2 class="text-3xl md:text-4xl font-bold mb-4">Featured AI Models</h2>
102
+ <p class="text-gray-400 max-w-2xl mx-auto">Our most popular generated models used by top creators worldwide</p>
103
+ </div>
104
+
105
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
106
+ <!-- Model 1 -->
107
+ <div class="model-card bg-gray-800/50 backdrop-blur-sm rounded-xl overflow-hidden border border-gray-700" data-aos="fade-up" data-aos-delay="100">
108
+ <div class="relative overflow-hidden h-80">
109
+ <img src="http://static.photos/people/640x360/101" alt="AI Model" class="w-full h-full object-cover">
110
+ <div class="absolute inset-0 bg-gradient-to-t from-black/80 to-transparent flex items-end p-6">
111
+ <div>
112
+ <h3 class="text-xl font-bold text-white">Sophia</h3>
113
+ <p class="text-pink-400">Fashion Model</p>
114
+ </div>
115
+ </div>
116
+ </div>
117
+ <div class="p-6">
118
+ <div class="flex justify-between items-center mb-4">
119
+ <span class="text-sm text-gray-400">#Fashion #Elegant</span>
120
+ <div class="flex gap-2">
121
+ <button class="p-2 rounded-full bg-gray-700 hover:bg-pink-600 transition-all">
122
+ <i data-feather="heart" class="w-4 h-4"></i>
123
+ </button>
124
+ <button class="p-2 rounded-full bg-gray-700 hover:bg-purple-600 transition-all">
125
+ <i data-feather="download" class="w-4 h-4"></i>
126
+ </button>
127
+ </div>
128
+ </div>
129
+ <button class="w-full py-3 rounded-lg bg-gradient-to-r from-pink-600 to-purple-600 text-white font-medium hover:from-pink-700 hover:to-purple-700 transition-all">
130
+ Customize This Model
131
+ </button>
132
+ </div>
133
+ </div>
134
+
135
+ <!-- Model 2 -->
136
+ <div class="model-card bg-gray-800/50 backdrop-blur-sm rounded-xl overflow-hidden border border-gray-700" data-aos="fade-up" data-aos-delay="200">
137
+ <div class="relative overflow-hidden h-80">
138
+ <img src="http://static.photos/people/640x360/102" alt="AI Model" class="w-full h-full object-cover">
139
+ <div class="absolute inset-0 bg-gradient-to-t from-black/80 to-transparent flex items-end p-6">
140
+ <div>
141
+ <h3 class="text-xl font-bold text-white">Luna</h3>
142
+ <p class="text-pink-400">Fitness Model</p>
143
+ </div>
144
+ </div>
145
+ </div>
146
+ <div class="p-6">
147
+ <div class="flex justify-between items-center mb-4">
148
+ <span class="text-sm text-gray-400">#Fitness #Athletic</span>
149
+ <div class="flex gap-2">
150
+ <button class="p-2 rounded-full bg-gray-700 hover:bg-pink-600 transition-all">
151
+ <i data-feather="heart" class="w-4 h-4"></i>
152
+ </button>
153
+ <button class="p-2 rounded-full bg-gray-700 hover:bg-purple-600 transition-all">
154
+ <i data-feather="download" class="w-4 h-4"></i>
155
+ </button>
156
+ </div>
157
+ </div>
158
+ <button class="w-full py-3 rounded-lg bg-gradient-to-r from-pink-600 to-purple-600 text-white font-medium hover:from-pink-700 hover:to-purple-700 transition-all">
159
+ Customize This Model
160
+ </button>
161
+ </div>
162
+ </div>
163
+
164
+ <!-- Model 3 -->
165
+ <div class="model-card bg-gray-800/50 backdrop-blur-sm rounded-xl overflow-hidden border border-gray-700" data-aos="fade-up" data-aos-delay="300">
166
+ <div class="relative overflow-hidden h-80">
167
+ <img src="http://static.photos/people/640x360/103" alt="AI Model" class="w-full h-full object-cover">
168
+ <div class="absolute inset-0 bg-gradient-to-t from-black/80 to-transparent flex items-end p-6">
169
+ <div>
170
+ <h3 class="text-xl font-bold text-white">Ava</h3>
171
+ <p class="text-pink-400">Commercial Model</p>
172
+ </div>
173
+ </div>
174
+ </div>
175
+ <div class="p-6">
176
+ <div class="flex justify-between items-center mb-4">
177
+ <span class="text-sm text-gray-400">#Commercial #Versatile</span>
178
+ <div class="flex gap-2">
179
+ <button class="p-2 rounded-full bg-gray-700 hover:bg-pink-600 transition-all">
180
+ <i data-feather="heart" class="w-4 h-4"></i>
181
+ </button>
182
+ <button class="p-2 rounded-full bg-gray-700 hover:bg-purple-600 transition-all">
183
+ <i data-feather="download" class="w-4 h-4"></i>
184
+ </button>
185
+ </div>
186
+ </div>
187
+ <button class="w-full py-3 rounded-lg bg-gradient-to-r from-pink-600 to-purple-600 text-white font-medium hover:from-pink-700 hover:to-purple-700 transition-all">
188
+ Customize This Model
189
+ </button>
190
+ </div>
191
+ </div>
192
+ </div>
193
+
194
+ <div class="text-center mt-16" data-aos="fade-up">
195
+ <button class="px-8 py-3 rounded-lg border border-gray-700 text-white font-medium hover:bg-gray-800/50 transition-all flex items-center gap-2 mx-auto">
196
+ <i data-feather="grid"></i>
197
+ Browse All Models
198
+ </button>
199
+ </div>
200
+ </section>
201
+
202
+ <!-- Video Generation Demo -->
203
+ <section class="py-20 px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto bg-gray-800/30 rounded-3xl my-16 backdrop-blur-sm">
204
+ <div class="flex flex-col lg:flex-row items-center gap-12">
205
+ <div class="lg:w-1/2" data-aos="fade-right">
206
+ <h2 class="text-3xl md:text-4xl font-bold mb-6">Bring Your AI Models to Life</h2>
207
+ <p class="text-gray-300 mb-8">
208
+ Our advanced animation system transforms your generated models into realistic video content.
209
+ Choose from hundreds of motion presets or create custom animations for your projects.
210
+ </p>
211
+ <ul class="space-y-4 mb-8">
212
+ <li class="flex items-start gap-3">
213
+ <i data-feather="check-circle" class="text-pink-500 mt-1 flex-shrink-0"></i>
214
+ <span class="text-gray-300">Natural facial expressions and body movements</span>
215
+ </li>
216
+ <li class="flex items-start gap-3">
217
+ <i data-feather="check-circle" class="text-pink-500 mt-1 flex-shrink-0"></i>
218
+ <span class="text-gray-300">Voice synthesis with emotion control</span>
219
+ </li>
220
+ <li class="flex items-start gap-3">
221
+ <i data-feather="check-circle" class="text-pink-500 mt-1 flex-shrink-0"></i>
222
+ <span class="text-gray-300">Customizable lighting and environments</span>
223
+ </li>
224
+ </ul>
225
+ <button class="px-8 py-3 rounded-lg bg-gradient-to-r from-pink-600 to-purple-600 text-white font-medium hover:from-pink-700 hover:to-purple-700 transition-all shadow-lg">
226
+ Start Animating
227
+ </button>
228
+ </div>
229
+ <div class="lg:w-1/2 video-preview" data-aos="fade-left">
230
+ <div class="relative aspect-video bg-black rounded-xl overflow-hidden">
231
+ <img src="http://static.photos/technology/1024x576/201" alt="Video Preview" class="w-full h-full object-cover">
232
+ <div class="absolute inset-0 flex items-center justify-center">
233
+ <button class="p-4 rounded-full bg-white/20 backdrop-blur-md hover:bg-white/30 transition-all">
234
+ <i data-feather="play" class="text-white w-8 h-8"></i>
235
+ </button>
236
+ </div>
237
+ </div>
238
+ </div>
239
+ </div>
240
+ </section>
241
+
242
+ <!-- Features -->
243
+ <section class="py-20 px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto">
244
+ <div class="text-center mb-16" data-aos="fade-up">
245
+ <h2 class="text-3xl md:text-4xl font-bold mb-4">Powerful Features</h2>
246
+ <p class="text-gray-400 max-w-2xl mx-auto">Everything you need to create professional AI models and videos</p>
247
+ </div>
248
+
249
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
250
+ <div class="bg-gray-800/50 backdrop-blur-sm p-8 rounded-xl border border-gray-700" data-aos="fade-up" data-aos-delay="100">
251
+ <div class="w-14 h-14 rounded-lg bg-pink-600/20 flex items-center justify-center mb-6">
252
+ <i data-feather="sliders" class="text-pink-500 w-6 h-6"></i>
253
+ </div>
254
+ <h3 class="text-xl font-bold mb-3">Customization</h3>
255
+ <p class="text-gray-400">
256
+ Fine-tune every aspect of your model's appearance with our intuitive controls and sliders.
257
+ </p>
258
+ </div>
259
+
260
+ <div class="bg-gray-800/50 backdrop-blur-sm p-8 rounded-xl border border-gray-700" data-aos="fade-up" data-aos-delay="200">
261
+ <div class="w-14 h-14 rounded-lg bg-purple-600/20 flex items-center justify-center mb-6">
262
+ <i data-feather="film" class="text-purple-500 w-6 h-6"></i>
263
+ </div>
264
+ <h3 class="text-xl font-bold mb-3">Animation</h3>
265
+ <p class="text-gray-400">
266
+ Bring your models to life with realistic movements, expressions, and lip-syncing.
267
+ </p>
268
+ </div>
269
+
270
+ <div class="bg-gray-800/50 backdrop-blur-sm p-8 rounded-xl border border-gray-700" data-aos="fade-up" data-aos-delay="300">
271
+ <div class="w-14 h-14 rounded-lg bg-blue-600/20 flex items-center justify-center mb-6">
272
+ <i data-feather="cpu" class="text-blue-500 w-6 h-6"></i>
273
+ </div>
274
+ <h3 class="text-xl font-bold mb-3">AI Upscaling</h3>
275
+ <p class="text-gray-400">
276
+ Enhance your models and videos to 4K resolution with our neural network technology.
277
+ </p>
278
+ </div>
279
+
280
+ <div class="bg-gray-800/50 backdrop-blur-sm p-8 rounded-xl border border-gray-700" data-aos="fade-up" data-aos-delay="100">
281
+ <div class="w-14 h-14 rounded-lg bg-green-600/20 flex items-center justify-center mb-6">
282
+ <i data-feather="database" class="text-green-500 w-6 h-6"></i>
283
+ </div>
284
+ <h3 class="text-xl font-bold mb-3">Style Library</h3>
285
+ <p class="text-gray-400">
286
+ Choose from thousands of pre-made styles or create and save your own unique looks.
287
+ </p>
288
+ </div>
289
+
290
+ <div class="bg-gray-800/50 backdrop-blur-sm p-8 rounded-xl border border-gray-700" data-aos="fade-up" data-aos-delay="200">
291
+ <div class="w-14 h-14 rounded-lg bg-yellow-600/20 flex items-center justify-center mb-6">
292
+ <i data-feather="cloud" class="text-yellow-500 w-6 h-6"></i>
293
+ </div>
294
+ <h3 class="text-xl font-bold mb-3">Cloud Rendering</h3>
295
+ <p class="text-gray-400">
296
+ Render complex scenes quickly using our powerful cloud infrastructure.
297
+ </p>
298
+ </div>
299
+
300
+ <div class="bg-gray-800/50 backdrop-blur-sm p-8 rounded-xl border border-gray-700" data-aos="fade-up" data-aos-delay="300">
301
+ <div class="w-14 h-14 rounded-lg bg-red-600/20 flex items-center justify-center mb-6">
302
+ <i data-feather="users" class="text-red-500 w-6 h-6"></i>
303
+ </div>
304
+ <h3 class="text-xl font-bold mb-3">Collaboration</h3>
305
+ <p class="text-gray-400">
306
+ Work with team members in real-time on the same project from anywhere.
307
+ </p>
308
+ </div>
309
+ </div>
310
+ </section>
311
+
312
+ <!-- CTA Section -->
313
+ <section class="py-20 px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto">
314
+ <div class="bg-gradient-to-r from-pink-600/20 to-purple-600/20 rounded-3xl p-12 text-center backdrop-blur-sm border border-gray-700" data-aos="fade-up">
315
+ <h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to Create Your Perfect AI Model?</h2>
316
+ <p class="text-gray-300 max-w-2xl mx-auto mb-8">
317
+ Join thousands of creators using NexaAI to generate stunning models and videos for their projects.
318
+ </p>
319
+ <div class="flex flex-col sm:flex-row justify-center gap-4">
320
+ <button class="px-8 py-4 rounded-lg bg-white text-gray-900 text-lg font-semibold hover:bg-gray-100 transition-all shadow-lg">
321
+ Start Free Trial
322
+ </button>
323
+ <button class="px-8 py-4 rounded-lg border border-gray-700 text-lg font-semibold text-white hover:bg-gray-800/50 transition-all">
324
+ Schedule Demo
325
+ </button>
326
+ </div>
327
+ </div>
328
+ </section>
329
+
330
+ <!-- Footer -->
331
+ <footer class="bg-gray-900/80 backdrop-blur-md border-t border-gray-800 py-12 px-4 sm:px-6 lg:px-8">
332
+ <div class="max-w-7xl mx-auto">
333
+ <div class="grid grid-cols-2 md:grid-cols-4 gap-8 mb-12">
334
+ <div>
335
+ <h3 class="text-lg font-semibold mb-4">Product</h3>
336
+ <ul class="space-y-2">
337
+ <li><a href="#" class="text-gray-400 hover:text-white transition-colors">Features</a></li>
338
+ <li><a href="#" class="text-gray-400 hover:text-white transition-colors">Pricing</a></li>
339
+ <li><a href="#" class="text-gray-400 hover:text-white transition-colors">Templates</a></li>
340
+ <li><a href="#" class="text-gray-400 hover:text-white transition-colors">API</a></li>
341
+ </ul>
342
+ </div>
343
+ <div>
344
+ <h3 class="text-lg font-semibold mb-4">Resources</h3>
345
+ <ul class="space-y-2">
346
+ <li><a href="#" class="text-gray-400 hover:text-white transition-colors">Documentation</a></li>
347
+ <li><a href="#" class="text-gray-400 hover:text-white transition-colors">Tutorials</a></li>
348
+ <li><a href="#" class="text-gray-400 hover:text-white transition-colors">Blog</a></li>
349
+ <li><a href="#" class="text-gray-400 hover:text-white transition-colors">Community</a></li>
350
+ </ul>
351
+ </div>
352
+ <div>
353
+ <h3 class="text-lg font-semibold mb-4">Company</h3>
354
+ <ul class="space-y-2">
355
+ <li><a href="#" class="text-gray-400 hover:text-white transition-colors">About</a></li>
356
+ <li><a href="#" class="text-gray-400 hover:text-white transition-colors">Careers</a></li>
357
+ <li><a href="#" class="text-gray-400 hover:text-white transition-colors">Press</a></li>
358
+ <li><a href="#" class="text-gray-400 hover:text-white transition-colors">Contact</a></li>
359
+ </ul>
360
+ </div>
361
+ <div>
362
+ <h3 class="text-lg font-semibold mb-4">Legal</h3>
363
+ <ul class="space-y-2">
364
+ <li><a href="#" class="text-gray-400 hover:text-white transition-colors">Privacy</a></li>
365
+ <li><a href="#" class="text-gray-400 hover:text-white transition-colors">Terms</a></li>
366
+ <li><a href="#" class="text-gray-400 hover:text-white transition-colors">Content Policy</a></li>
367
+ <li><a href="#" class="text-gray-400 hover:text-white transition-colors">Ethics</a></li>
368
+ </ul>
369
+ </div>
370
+ </div>
371
+ <div class="pt-8 border-t border-gray-800 flex flex-col md:flex-row justify-between items-center">
372
+ <div class="flex items-center mb-4 md:mb-0">
373
+ <span class="text-2xl font-bold gradient-text">NexaAI</span>
374
+ <span class="text-gray-400 ml-4 text-sm">© 2023 NexaAI Technologies. All rights reserved.</span>
375
+ </div>
376
+ <div class="flex space-x-6">
377
+ <a href="#" class="text-gray-400 hover:text-white transition-colors">
378
+ <i data-feather="twitter"></i>
379
+ </a>
380
+ <a href="#" class="text-gray-400 hover:text-white transition-colors">
381
+ <i data-feather="instagram"></i>
382
+ </a>
383
+ <a href="#" class="text-gray-400 hover:text-white transition-colors">
384
+ <i data-feather="facebook"></i>
385
+ </a>
386
+ <a href="#" class="text-gray-400 hover:text-white transition-colors">
387
+ <i data-feather="youtube"></i>
388
+ </a>
389
+ <a href="#" class="text-gray-400 hover:text-white transition-colors">
390
+ <i data-feather="github"></i>
391
+ </a>
392
+ </div>
393
+ </div>
394
+ </div>
395
+ </footer>
396
+
397
+ <script>
398
+ // Initialize Vanta.js background
399
+ VANTA.NET({
400
+ el: "#vanta-bg",
401
+ mouseControls: true,
402
+ touchControls: true,
403
+ gyroControls: false,
404
+ minHeight: 200.00,
405
+ minWidth: 200.00,
406
+ scale: 1.00,
407
+ scaleMobile: 1.00,
408
+ color: 0x8b5cf6,
409
+ backgroundColor: 0x111827,
410
+ points: 10.00,
411
+ maxDistance: 22.00,
412
+ spacing: 18.00
413
+ });
414
+
415
+ // Initialize AOS and Feather Icons
416
+ AOS.init({
417
+ duration: 800,
418
+ easing: 'ease-in-out',
419
+ once: true
420
+ });
421
+ feather.replace();
422
+ </script>
423
+ </body>
424
  </html>
prompts.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ Generate a website which can generate sexy Ai models for creating cool sexy Ai video