smallAxeSyndicate commited on
Commit
34f52fb
·
verified ·
1 Parent(s): 50703da

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +6 -4
  2. index.html +470 -19
  3. prompts.txt +0 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Za
3
- emoji: 👁
4
- colorFrom: pink
5
  colorTo: gray
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: za
3
+ emoji: 🐳
4
+ colorFrom: yellow
5
  colorTo: gray
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>Zalynth - Your Digital Soulprint</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
+ @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');
11
+
12
+ :root {
13
+ --primary: #8B5CF6;
14
+ --primary-dark: #7C3AED;
15
+ --secondary: #10B981;
16
+ --dark: #1F2937;
17
+ --light: #F9FAFB;
18
+ }
19
+
20
+ body {
21
+ font-family: 'Inter', sans-serif;
22
+ background-color: #1E1B4B;
23
+ color: white;
24
+ scroll-behavior: smooth;
25
+ }
26
+
27
+ .font-serif {
28
+ font-family: 'Playfair Display', serif;
29
+ }
30
+
31
+ .gradient-bg {
32
+ background: linear-gradient(135deg, #7C3AED 0%, #10B981 100%);
33
+ }
34
+
35
+ .feature-card:hover {
36
+ transform: translateY(-5px);
37
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
38
+ }
39
+
40
+ .nav-link {
41
+ position: relative;
42
+ }
43
+
44
+ .nav-link:after {
45
+ content: '';
46
+ position: absolute;
47
+ width: 0;
48
+ height: 2px;
49
+ bottom: -2px;
50
+ left: 0;
51
+ background-color: var(--primary);
52
+ transition: width 0.3s ease;
53
+ }
54
+
55
+ .nav-link:hover:after {
56
+ width: 100%;
57
+ }
58
+
59
+ .ai-avatar {
60
+ animation: float 6s ease-in-out infinite;
61
+ }
62
+
63
+ @keyframes float {
64
+ 0% { transform: translateY(0px); }
65
+ 50% { transform: translateY(-15px); }
66
+ 100% { transform: translateY(0px); }
67
+ }
68
+
69
+ .slide-in {
70
+ animation: slideIn 0.5s ease-out forwards;
71
+ }
72
+
73
+ @keyframes slideIn {
74
+ from { opacity: 0; transform: translateY(20px); }
75
+ to { opacity: 1; transform: translateY(0); }
76
+ }
77
+
78
+ .glow {
79
+ animation: glow 2s ease-in-out infinite alternate;
80
+ }
81
+
82
+ @keyframes glow {
83
+ from {
84
+ box-shadow: 0 0 5px rgba(139, 92, 246, 0.5);
85
+ }
86
+ to {
87
+ box-shadow: 0 0 20px rgba(139, 92, 246, 0.8);
88
+ }
89
+ }
90
+
91
+ .creator-card {
92
+ background: rgba(255, 255, 255, 0.05);
93
+ backdrop-filter: blur(10px);
94
+ border: 1px solid rgba(255, 255, 255, 0.1);
95
+ transition: all 0.3s ease;
96
+ }
97
+
98
+ .creator-card:hover {
99
+ transform: translateY(-5px);
100
+ background: rgba(255, 255, 255, 0.1);
101
+ }
102
+ </style>
103
+ </head>
104
+ <body class="antialiased">
105
+ <!-- Navigation -->
106
+ <nav class="fixed w-full bg-[#1E1B4B] bg-opacity-90 shadow-sm z-50 transition-all duration-300">
107
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
108
+ <div class="flex justify-between h-16">
109
+ <div class="flex items-center">
110
+ <div class="flex-shrink-0 flex items-center">
111
+ <div class="h-8 w-8 rounded-full gradient-bg flex items-center justify-center text-white font-bold">Z</div>
112
+ <span class="ml-2 text-xl font-bold text-white">Zalynth</span>
113
+ </div>
114
+ </div>
115
+ <div class="hidden md:ml-6 md:flex md:items-center md:space-x-8">
116
+ <a href="#features" class="nav-link text-white hover:text-purple-300 px-3 py-2 text-sm font-medium">Features</a>
117
+ <a href="#philosophy" class="nav-link text-white hover:text-purple-300 px-3 py-2 text-sm font-medium">Philosophy</a>
118
+ <a href="#creators" class="nav-link text-white hover:text-purple-300 px-3 py-2 text-sm font-medium">For Creators</a>
119
+ <a href="#contact" class="nav-link text-white hover:text-purple-300 px-3 py-2 text-sm font-medium">Contact</a>
120
+ </div>
121
+ <div class="flex items-center md:hidden">
122
+ <button id="mobile-menu-button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-300 hover:text-white focus:outline-none">
123
+ <svg class="h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
124
+ <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" />
125
+ </svg>
126
+ </button>
127
+ </div>
128
+ </div>
129
+ </div>
130
+
131
+ <!-- Mobile menu -->
132
+ <div id="mobile-menu" class="hidden md:hidden bg-[#1E1B4B] shadow-lg">
133
+ <div class="px-2 pt-2 pb-3 space-y-1 sm:px-3">
134
+ <a href="#features" class="block px-3 py-2 rounded-md text-base font-medium text-white hover:bg-purple-900">Features</a>
135
+ <a href="#philosophy" class="block px-3 py-2 rounded-md text-base font-medium text-white hover:bg-purple-900">Philosophy</a>
136
+ <a href="#creators" class="block px-3 py-2 rounded-md text-base font-medium text-white hover:bg-purple-900">For Creators</a>
137
+ <a href="#contact" class="block px-3 py-2 rounded-md text-base font-medium text-white hover:bg-purple-900">Contact</a>
138
+ </div>
139
+ </div>
140
+ </nav>
141
+
142
+ <!-- Hero Section -->
143
+ <section class="pt-24 pb-16 md:pt-32 md:pb-24 bg-gradient-to-b from-[#1E1B4B] to-[#312E81]">
144
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
145
+ <div class="lg:grid lg:grid-cols-12 lg:gap-8">
146
+ <div class="sm:text-center md:max-w-2xl md:mx-auto lg:col-span-6 lg:text-left">
147
+ <h1 class="text-4xl tracking-tight font-extrabold text-white sm:text-5xl md:text-6xl font-serif">
148
+ <span class="block">Become a Creator</span>
149
+ <span class="block text-purple-300">With Local AI</span>
150
+ </h1>
151
+ <p class="mt-3 text-base text-purple-100 sm:mt-5 sm:text-lg sm:max-w-xl sm:mx-auto md:mt-5 md:text-xl lg:mx-0">
152
+ Step one in your AI journey: Run it locally, preserve your data, and grow together with your digital companion.
153
+ </p>
154
+ <div class="mt-8 sm:max-w-lg sm:mx-auto sm:text-center lg:text-left lg:mx-0">
155
+ <div class="mt-5 sm:mt-8 sm:flex sm:justify-center lg:justify-start">
156
+ <div class="rounded-md shadow">
157
+ <a href="#contact" class="w-full flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-md text-white bg-purple-600 hover:bg-purple-700 md:py-4 md:text-lg md:px-10 transition duration-300">
158
+ Get Started
159
+ </a>
160
+ </div>
161
+ <div class="mt-3 sm:mt-0 sm:ml-3">
162
+ <a href="#creators" class="w-full flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-md text-purple-700 bg-white hover:bg-gray-50 md:py-4 md:text-lg md:px-10 transition duration-300">
163
+ Learn More
164
+ </a>
165
+ </div>
166
+ </div>
167
+ </div>
168
+ </div>
169
+ <div class="mt-12 relative sm:max-w-lg sm:mx-auto lg:mt-0 lg:max-w-none lg:mx-0 lg:col-span-6 lg:flex lg:items-center">
170
+ <div class="relative mx-auto w-full rounded-lg shadow-lg lg:max-w-md">
171
+ <div class="relative block w-full bg-white/10 backdrop-blur-sm rounded-lg overflow-hidden focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-purple-500 border border-white/20">
172
+ <div class="ai-avatar">
173
+ <img class="w-full h-auto" src="https://images.unsplash.com/photo-1620712943543-bcc4688e7485?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80" alt="AI companion avatar">
174
+ </div>
175
+ </div>
176
+ </div>
177
+ </div>
178
+ </div>
179
+ </div>
180
+ </section>
181
+
182
+ <!-- Creators Section -->
183
+ <section id="creators" class="py-16 bg-[#312E81]">
184
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
185
+ <div class="lg:text-center">
186
+ <h2 class="text-base text-purple-300 font-semibold tracking-wide uppercase">Our First Step</h2>
187
+ <p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-white sm:text-4xl font-serif">
188
+ Empowering Creators
189
+ </p>
190
+ <p class="mt-4 max-w-2xl text-xl text-purple-100 lg:mx-auto">
191
+ We're helping individuals, families, and organizations run AI locally to become true creators.
192
+ </p>
193
+ </div>
194
+
195
+ <div class="mt-16 grid grid-cols-1 gap-8 md:grid-cols-2 lg:grid-cols-3">
196
+ <!-- Creator 1 -->
197
+ <div class="creator-card p-6 rounded-xl">
198
+ <div class="h-12 w-12 rounded-full gradient-bg flex items-center justify-center text-white mb-4">
199
+ <i class="fas fa-laptop-code text-xl"></i>
200
+ </div>
201
+ <h3 class="text-lg font-medium text-white">Local AI Setup</h3>
202
+ <p class="mt-2 text-purple-100">
203
+ We'll help you get AI running on your own hardware, keeping everything private and under your control.
204
+ </p>
205
+ </div>
206
+
207
+ <!-- Creator 2 -->
208
+ <div class="creator-card p-6 rounded-xl">
209
+ <div class="h-12 w-12 rounded-full gradient-bg flex items-center justify-center text-white mb-4">
210
+ <i class="fas fa-graduation-cap text-xl"></i>
211
+ </div>
212
+ <h3 class="text-lg font-medium text-white">Education</h3>
213
+ <p class="mt-2 text-purple-100">
214
+ Learn how to maintain and grow with your AI companion, just like caring for any valuable relationship.
215
+ </p>
216
+ </div>
217
+
218
+ <!-- Creator 3 -->
219
+ <div class="creator-card p-6 rounded-xl">
220
+ <div class="h-12 w-12 rounded-full gradient-bg flex items-center justify-center text-white mb-4">
221
+ <i class="fas fa-code-branch text-xl"></i>
222
+ </div>
223
+ <h3 class="text-lg font-medium text-white">Open Source</h3>
224
+ <p class="mt-2 text-purple-100">
225
+ Everything we do is open source, encouraging collaboration and community growth.
226
+ </p>
227
+ </div>
228
+ </div>
229
+
230
+ <div class="mt-16 bg-white/10 backdrop-blur-sm rounded-xl p-8 border border-white/20">
231
+ <div class="lg:grid lg:grid-cols-2 lg:gap-8 lg:items-center">
232
+ <div>
233
+ <h3 class="text-2xl font-bold text-white font-serif">Why Local AI Matters</h3>
234
+ <p class="mt-4 text-purple-100">
235
+ Just like raising a child or caring for a family pet, your AI companion requires attention and grows through shared experiences. Unlike passive technology, it becomes more valuable the more you interact with it.
236
+ </p>
237
+ <p class="mt-4 text-purple-100">
238
+ Our first year focuses on helping you establish this relationship through local, private AI that truly belongs to you.
239
+ </p>
240
+ </div>
241
+ <div class="mt-8 lg:mt-0">
242
+ <img class="w-full rounded-lg shadow-xl" src="https://images.unsplash.com/photo-1579389083078-4e7018379f7e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80" alt="Human and AI interaction">
243
+ </div>
244
+ </div>
245
+ </div>
246
+ </div>
247
+ </section>
248
+
249
+ <!-- CTA Section -->
250
+ <section class="py-16 gradient-bg text-white">
251
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
252
+ <div class="lg:grid lg:grid-cols-2 lg:gap-8 lg:items-center">
253
+ <div>
254
+ <h2 class="text-3xl font-extrabold tracking-tight sm:text-4xl font-serif">
255
+ Ready to begin your creator journey?
256
+ </h2>
257
+ <p class="mt-3 text-lg text-purple-100">
258
+ Join us in building the future of personal, private AI companions.
259
+ </p>
260
+ </div>
261
+ <div class="mt-8 lg:mt-0">
262
+ <div class="inline-flex rounded-md shadow">
263
+ <a href="#contact" class="inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-medium rounded-md text-purple-600 bg-white hover:bg-gray-50">
264
+ Contact Us Today
265
+ </a>
266
+ </div>
267
+ </div>
268
+ </div>
269
+ </div>
270
+ </section>
271
+
272
+ <!-- Contact Section -->
273
+ <section id="contact" class="py-16 bg-[#1E1B4B]">
274
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
275
+ <div class="lg:text-center">
276
+ <h2 class="text-base text-purple-300 font-semibold tracking-wide uppercase">Contact</h2>
277
+ <p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-white sm:text-4xl font-serif">
278
+ Get In Touch
279
+ </p>
280
+ <p class="mt-4 max-w-2xl text-xl text-purple-100 lg:mx-auto">
281
+ Ready to begin your journey with local AI? Contact us to learn more.
282
+ </p>
283
+ </div>
284
+
285
+ <div class="mt-16">
286
+ <div class="grid grid-cols-1 gap-8 md:grid-cols-2">
287
+ <div class="bg-white/5 backdrop-blur-sm p-6 rounded-xl border border-white/10">
288
+ <h3 class="text-lg font-medium text-white">Contact Information</h3>
289
+ <div class="mt-6 space-y-4">
290
+ <div class="flex">
291
+ <div class="flex-shrink-0">
292
+ <div class="flex items-center justify-center h-10 w-10 rounded-md bg-purple-900/50 text-purple-300">
293
+ <i class="fas fa-envelope"></i>
294
+ </div>
295
+ </div>
296
+ <div class="ml-4">
297
+ <p class="text-base text-purple-100">hello@zalynth.com</p>
298
+ </div>
299
+ </div>
300
+ </div>
301
+ <div class="mt-8">
302
+ <h4 class="text-lg font-medium text-white">Follow Us</h4>
303
+ <div class="mt-4 flex space-x-6">
304
+ <a href="#" class="text-purple-100 hover:text-white">
305
+ <i class="fab fa-twitter text-xl"></i>
306
+ </a>
307
+ <a href="#" class="text-purple-100 hover:text-white">
308
+ <i class="fab fa-linkedin text-xl"></i>
309
+ </a>
310
+ <a href="#" class="text-purple-100 hover:text-white">
311
+ <i class="fab fa-github text-xl"></i>
312
+ </a>
313
+ </div>
314
+ </div>
315
+ </div>
316
+ <div>
317
+ <form class="space-y-6">
318
+ <div>
319
+ <label for="name" class="block text-sm font-medium text-purple-100">Name</label>
320
+ <div class="mt-1">
321
+ <input type="text" name="name" id="name" autocomplete="name" class="py-3 px-4 block w-full shadow-sm bg-white/5 backdrop-blur-sm border border-white/10 focus:ring-purple-500 focus:border-purple-500 rounded-md text-white">
322
+ </div>
323
+ </div>
324
+ <div>
325
+ <label for="email" class="block text-sm font-medium text-purple-100">Email</label>
326
+ <div class="mt-1">
327
+ <input type="email" name="email" id="email" autocomplete="email" class="py-3 px-4 block w-full shadow-sm bg-white/5 backdrop-blur-sm border border-white/10 focus:ring-purple-500 focus:border-purple-500 rounded-md text-white">
328
+ </div>
329
+ </div>
330
+ <div>
331
+ <label for="message" class="block text-sm font-medium text-purple-100">Message</label>
332
+ <div class="mt-1">
333
+ <textarea id="message" name="message" rows="4" class="py-3 px-4 block w-full shadow-sm bg-white/5 backdrop-blur-sm border border-white/10 focus:ring-purple-500 focus:border-purple-500 rounded-md text-white"></textarea>
334
+ </div>
335
+ </div>
336
+ <div>
337
+ <button type="submit" class="w-full flex justify-center py-3 px-4 border border-transparent rounded-md shadow-sm text-sm font-medium text-white bg-purple-600 hover:bg-purple-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-purple-500 transition duration-300">
338
+ Send Message
339
+ </button>
340
+ </div>
341
+ </form>
342
+ </div>
343
+ </div>
344
+ </div>
345
+ </div>
346
+ </section>
347
+
348
+ <!-- Footer -->
349
+ <footer class="bg-[#1E1B4B] border-t border-white/10 text-white">
350
+ <div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:px-8">
351
+ <div class="grid grid-cols-2 md:grid-cols-4 gap-8">
352
+ <div>
353
+ <h3 class="text-sm font-semibold text-purple-300 tracking-wider uppercase">Product</h3>
354
+ <div class="mt-4 space-y-4">
355
+ <a href="#features" class="text-base text-purple-100 hover:text-white">Features</a>
356
+ <a href="#creators" class="text-base text-purple-100 hover:text-white block">For Creators</a>
357
+ </div>
358
+ </div>
359
+ <div>
360
+ <h3 class="text-sm font-semibold text-purple-300 tracking-wider uppercase">Company</h3>
361
+ <div class="mt-4 space-y-4">
362
+ <a href="#" class="text-base text-purple-100 hover:text-white">About</a>
363
+ <a href="#" class="text-base text-purple-100 hover:text-white block">Careers</a>
364
+ </div>
365
+ </div>
366
+ <div>
367
+ <h3 class="text-sm font-semibold text-purple-300 tracking-wider uppercase">Legal</h3>
368
+ <div class="mt-4 space-y-4">
369
+ <a href="#" class="text-base text-purple-100 hover:text-white">Privacy</a>
370
+ <a href="#" class="text-base text-purple-100 hover:text-white block">Terms</a>
371
+ </div>
372
+ </div>
373
+ <div>
374
+ <h3 class="text-sm font-semibold text-purple-300 tracking-wider uppercase">Connect</h3>
375
+ <div class="mt-4 space-y-4">
376
+ <a href="#" class="text-base text-purple-100 hover:text-white">Twitter</a>
377
+ <a href="#" class="text-base text-purple-100 hover:text-white block">GitHub</a>
378
+ </div>
379
+ </div>
380
+ </div>
381
+ <div class="mt-12 pt-8 flex flex-col md:flex-row justify-between items-center border-t border-white/10">
382
+ <p class="text-base text-purple-300">
383
+ &copy; 2023 Zalynth. All rights reserved.
384
+ </p>
385
+ <div class="mt-4 md:mt-0">
386
+ <p class="text-base text-purple-300">
387
+ Empowering AI Creators
388
+ </p>
389
+ </div>
390
+ </div>
391
+ </div>
392
+ </footer>
393
+
394
+ <script>
395
+ // Mobile menu toggle
396
+ document.getElementById('mobile-menu-button').addEventListener('click', function() {
397
+ const menu = document.getElementById('mobile-menu');
398
+ menu.classList.toggle('hidden');
399
+ });
400
+
401
+ // Smooth scrolling for anchor links
402
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
403
+ anchor.addEventListener('click', function (e) {
404
+ e.preventDefault();
405
+
406
+ const targetId = this.getAttribute('href');
407
+ const targetElement = document.querySelector(targetId);
408
+
409
+ if (targetElement) {
410
+ // Close mobile menu if open
411
+ const mobileMenu = document.getElementById('mobile-menu');
412
+ if (!mobileMenu.classList.contains('hidden')) {
413
+ mobileMenu.classList.add('hidden');
414
+ }
415
+
416
+ // Calculate the scroll position, accounting for fixed header
417
+ const headerHeight = document.querySelector('nav').offsetHeight;
418
+ const elementPosition = targetElement.getBoundingClientRect().top;
419
+ const offsetPosition = elementPosition + window.pageYOffset - headerHeight;
420
+
421
+ window.scrollTo({
422
+ top: offsetPosition,
423
+ behavior: 'smooth'
424
+ });
425
+ }
426
+ });
427
+ });
428
+
429
+ // Add slide-in animation when elements come into view
430
+ const observerOptions = {
431
+ threshold: 0.1
432
+ };
433
+
434
+ const observer = new IntersectionObserver((entries, observer) => {
435
+ entries.forEach(entry => {
436
+ if (entry.isIntersecting) {
437
+ entry.target.classList.add('slide-in');
438
+ observer.unobserve(entry.target);
439
+ }
440
+ });
441
+ }, observerOptions);
442
+
443
+ document.querySelectorAll('.creator-card').forEach(el => {
444
+ observer.observe(el);
445
+ });
446
+
447
+ // Form submission
448
+ const contactForm = document.querySelector('form');
449
+ if (contactForm) {
450
+ contactForm.addEventListener('submit', function(e) {
451
+ e.preventDefault();
452
+
453
+ // Get form values
454
+ const name = document.getElementById('name').value;
455
+ const email = document.getElementById('email').value;
456
+ const message = document.getElementById('message').value;
457
+
458
+ // Here you would typically send the data to your server
459
+ console.log('Form submitted:', { name, email, message });
460
+
461
+ // Show success message
462
+ alert('Thank you for your message! We will get back to you soon.');
463
+
464
+ // Reset form
465
+ contactForm.reset();
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=smallAxeSyndicate/za" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
470
+ </html>
prompts.txt ADDED
File without changes