youkenyan commited on
Commit
f39790d
·
verified ·
1 Parent(s): b3bde95

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +5 -3
  2. index.html +463 -19
  3. prompts.txt +0 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Test
3
- emoji: 🐠
4
  colorFrom: yellow
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: test
3
+ emoji: 🐳
4
  colorFrom: yellow
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,463 @@
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
+ <meta name="description" content="NouDa Solutions - A full-service marketing agency helping businesses grow through smart, targeted campaigns and innovative solutions.">
7
+ <title>NouDa Solutions | Helping Brands Grow Smarter</title>
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
10
+ <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
11
+ <style>
12
+ body {
13
+ font-family: 'Poppins', sans-serif;
14
+ scroll-behavior: smooth;
15
+ }
16
+
17
+ .hero-gradient {
18
+ background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
19
+ }
20
+
21
+ .fade-in {
22
+ opacity: 0;
23
+ transition: opacity 0.6s ease-out, transform 0.6s ease-out;
24
+ }
25
+
26
+ .fade-in.visible {
27
+ opacity: 1;
28
+ transform: translateY(0);
29
+ }
30
+
31
+ .service-card:hover {
32
+ transform: translateY(-5px);
33
+ box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
34
+ }
35
+
36
+ .nav-link {
37
+ position: relative;
38
+ }
39
+
40
+ .nav-link:after {
41
+ content: '';
42
+ position: absolute;
43
+ width: 0;
44
+ height: 2px;
45
+ bottom: -2px;
46
+ left: 0;
47
+ background-color: #3f51b5;
48
+ transition: width 0.3s ease;
49
+ }
50
+
51
+ .nav-link:hover:after {
52
+ width: 100%;
53
+ }
54
+ </style>
55
+ </head>
56
+ <body class="bg-white text-gray-800">
57
+ <!-- Navigation -->
58
+ <nav class="bg-white shadow-sm sticky top-0 z-50">
59
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
60
+ <div class="flex justify-between h-20 items-center">
61
+ <div class="flex items-center">
62
+ <div class="flex-shrink-0">
63
+ <span class="text-2xl font-bold text-blue-800">NouDa Solutions</span>
64
+ </div>
65
+ <div class="hidden md:block ml-10">
66
+ <div class="flex space-x-8">
67
+ <a href="#about" class="nav-link text-gray-800 font-medium">About</a>
68
+ <a href="#services" class="nav-link text-gray-800 font-medium">Services</a>
69
+ <a href="#why-us" class="nav-link text-gray-800 font-medium">Why Us</a>
70
+ <a href="#contact" class="nav-link text-gray-800 font-medium">Contact</a>
71
+ </div>
72
+ </div>
73
+ </div>
74
+ <div class="hidden md:block">
75
+ <a href="#contact" class="bg-blue-700 hover:bg-blue-800 text-white px-6 py-2 rounded-md font-medium transition duration-300">Get Started</a>
76
+ </div>
77
+ <div class="md:hidden">
78
+ <button type="button" class="text-gray-800 hover:text-blue-700 focus:outline-none" id="mobile-menu-button">
79
+ <svg class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
80
+ <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" />
81
+ </svg>
82
+ </button>
83
+ </div>
84
+ </div>
85
+ </div>
86
+
87
+ <!-- Mobile menu -->
88
+ <div class="md:hidden hidden" id="mobile-menu">
89
+ <div class="px-2 pt-2 pb-3 space-y-1 sm:px-3 bg-white">
90
+ <a href="#about" class="block px-3 py-2 text-gray-800 hover:text-blue-700 font-medium">About</a>
91
+ <a href="#services" class="block px-3 py-2 text-gray-800 hover:text-blue-700 font-medium">Services</a>
92
+ <a href="#why-us" class="block px-3 py-2 text-gray-800 hover:text-blue-700 font-medium">Why Us</a>
93
+ <a href="#contact" class="block px-3 py-2 text-gray-800 hover:text-blue-700 font-medium">Contact</a>
94
+ <a href="#contact" class="block px-3 py-2 bg-blue-700 text-white rounded-md font-medium text-center">Get Started</a>
95
+ </div>
96
+ </div>
97
+ </nav>
98
+
99
+ <!-- Hero Section -->
100
+ <section class="hero-gradient text-white">
101
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-24 md:py-32">
102
+ <div class="text-center fade-in">
103
+ <h1 class="text-4xl md:text-6xl font-bold leading-tight mb-6">
104
+ Helping Brands <span class="text-blue-200">Grow Smarter</span>
105
+ </h1>
106
+ <p class="text-xl md:text-2xl mb-10 opacity-90">
107
+ Marketing strategies built for results.
108
+ </p>
109
+ <div class="flex flex-col sm:flex-row justify-center gap-4">
110
+ <a href="#contact" class="bg-white hover:bg-blue-100 text-blue-800 px-8 py-3 rounded-md font-medium text-lg transition duration-300">
111
+ Get Started
112
+ </a>
113
+ <a href="#services" class="bg-transparent hover:bg-blue-800 border-2 border-white text-white px-8 py-3 rounded-md font-medium text-lg transition duration-300">
114
+ Our Services
115
+ </a>
116
+ </div>
117
+ </div>
118
+ </div>
119
+ </section>
120
+
121
+ <!-- About Section -->
122
+ <section id="about" class="py-16 md:py-24 bg-white">
123
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
124
+ <div class="lg:flex lg:items-center lg:justify-between">
125
+ <div class="lg:w-1/2 mb-12 lg:mb-0 fade-in">
126
+ <h2 class="text-3xl md:text-4xl font-bold mb-6 text-blue-800">
127
+ About <span class="text-blue-600">NouDa Solutions</span>
128
+ </h2>
129
+ <p class="text-lg text-gray-700 mb-6">
130
+ We are a full-service marketing agency focused on helping businesses grow through smart, targeted campaigns and innovative solutions.
131
+ </p>
132
+ <p class="text-lg text-gray-700 mb-8">
133
+ Our team combines strategic thinking with creative execution to deliver measurable results that drive business growth.
134
+ </p>
135
+ <div class="flex items-center space-x-4">
136
+ <div class="bg-blue-100 w-12 h-12 rounded-full flex items-center justify-center">
137
+ <i class="fas fa-lightbulb text-blue-700 text-xl"></i>
138
+ </div>
139
+ <p class="text-gray-700">
140
+ Trusted by <span class="font-bold">200+</span> businesses worldwide
141
+ </p>
142
+ </div>
143
+ </div>
144
+ <div class="lg:w-1/2 lg:pl-12 fade-in">
145
+ <div class="bg-gray-100 rounded-xl overflow-hidden">
146
+ <img src="https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80"
147
+ alt="Marketing team meeting"
148
+ class="w-full h-auto object-cover">
149
+ </div>
150
+ </div>
151
+ </div>
152
+ </div>
153
+ </section>
154
+
155
+ <!-- Services Section -->
156
+ <section id="services" class="py-16 md:py-24 bg-gray-50">
157
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
158
+ <div class="text-center mb-16 fade-in">
159
+ <h2 class="text-3xl md:text-4xl font-bold mb-4 text-blue-800">
160
+ Our <span class="text-blue-600">Services</span>
161
+ </h2>
162
+ <p class="text-xl text-gray-600 max-w-3xl mx-auto">
163
+ Comprehensive marketing solutions tailored to your business needs
164
+ </p>
165
+ </div>
166
+
167
+ <div class="grid md:grid-cols-2 lg:grid-cols-4 gap-8">
168
+ <!-- Service 1 -->
169
+ <div class="service-card bg-white p-8 rounded-xl shadow-md transition duration-300 fade-in">
170
+ <div class="bg-blue-100 w-16 h-16 rounded-full flex items-center justify-center mb-6">
171
+ <i class="fas fa-bullseye text-blue-700 text-2xl"></i>
172
+ </div>
173
+ <h3 class="text-xl font-bold mb-3 text-blue-800">Digital Marketing</h3>
174
+ <p class="text-gray-600">
175
+ Targeted campaigns across all digital channels to maximize your online presence and conversions.
176
+ </p>
177
+ </div>
178
+
179
+ <!-- Service 2 -->
180
+ <div class="service-card bg-white p-8 rounded-xl shadow-md transition duration-300 fade-in" style="transition-delay: 0.1s;">
181
+ <div class="bg-blue-100 w-16 h-16 rounded-full flex items-center justify-center mb-6">
182
+ <i class="fas fa-palette text-blue-700 text-2xl"></i>
183
+ </div>
184
+ <h3 class="text-xl font-bold mb-3 text-blue-800">Branding</h3>
185
+ <p class="text-gray-600">
186
+ Develop a powerful brand identity that resonates with your audience and stands out in the market.
187
+ </p>
188
+ </div>
189
+
190
+ <!-- Service 3 -->
191
+ <div class="service-card bg-white p-8 rounded-xl shadow-md transition duration-300 fade-in" style="transition-delay: 0.2s;">
192
+ <div class="bg-blue-100 w-16 h-16 rounded-full flex items-center justify-center mb-6">
193
+ <i class="fas fa-code text-blue-700 text-2xl"></i>
194
+ </div>
195
+ <h3 class="text-xl font-bold mb-3 text-blue-800">Web Development</h3>
196
+ <p class="text-gray-600">
197
+ High-performance websites designed for user experience, conversions, and search visibility.
198
+ </p>
199
+ </div>
200
+
201
+ <!-- Service 4 -->
202
+ <div class="service-card bg-white p-8 rounded-xl shadow-md transition duration-300 fade-in" style="transition-delay: 0.3s;">
203
+ <div class="bg-blue-100 w-16 h-16 rounded-full flex items-center justify-center mb-6">
204
+ <i class="fas fa-chart-line text-blue-700 text-2xl"></i>
205
+ </div>
206
+ <h3 class="text-xl font-bold mb-3 text-blue-800">Strategy Consulting</h3>
207
+ <p class="text-gray-600">
208
+ Data-driven marketing strategies aligned with your business objectives for sustainable growth.
209
+ </p>
210
+ </div>
211
+ </div>
212
+ </div>
213
+ </section>
214
+
215
+ <!-- Why Choose Us Section -->
216
+ <section id="why-us" class="py-16 md:py-24 bg-white">
217
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
218
+ <div class="text-center mb-16 fade-in">
219
+ <h2 class="text-3xl md:text-4xl font-bold mb-4 text-blue-800">
220
+ Why Choose <span class="text-blue-600">NouDa</span>
221
+ </h2>
222
+ <p class="text-xl text-gray-600 max-w-3xl mx-auto">
223
+ What sets us apart in delivering exceptional marketing results
224
+ </p>
225
+ </div>
226
+
227
+ <div class="grid md:grid-cols-3 gap-8">
228
+ <!-- Reason 1 -->
229
+ <div class="bg-gray-50 p-8 rounded-xl border-l-4 border-blue-700 fade-in">
230
+ <div class="flex items-center mb-6">
231
+ <div class="bg-blue-700 text-white w-10 h-10 rounded-full flex items-center justify-center font-bold mr-4">
232
+ <i class="fas fa-user-friends"></i>
233
+ </div>
234
+ <h3 class="text-xl font-bold text-blue-800">Client-Centered Approach</h3>
235
+ </div>
236
+ <p class="text-gray-600">
237
+ We take time to understand your unique business needs and goals, creating customized solutions rather than one-size-fits-all approaches.
238
+ </p>
239
+ </div>
240
+
241
+ <!-- Reason 2 -->
242
+ <div class="bg-gray-50 p-8 rounded-xl border-l-4 border-blue-700 fade-in" style="transition-delay: 0.1s;">
243
+ <div class="flex items-center mb-6">
244
+ <div class="bg-blue-700 text-white w-10 h-10 rounded-full flex items-center justify-center font-bold mr-4">
245
+ <i class="fas fa-chart-bar"></i>
246
+ </div>
247
+ <h3 class="text-xl font-bold text-blue-800">Proven Results</h3>
248
+ </div>
249
+ <p class="text-gray-600">
250
+ Our data-driven strategies consistently deliver measurable ROI, with clients seeing an average of 3x return on their marketing investment.
251
+ </p>
252
+ </div>
253
+
254
+ <!-- Reason 3 -->
255
+ <div class="bg-gray-50 p-8 rounded-xl border-l-4 border-blue-700 fade-in" style="transition-delay: 0.2s;">
256
+ <div class="flex items-center mb-6">
257
+ <div class="bg-blue-700 text-white w-10 h-10 rounded-full flex items-center justify-center font-bold mr-4">
258
+ <i class="fas fa-users"></i>
259
+ </div>
260
+ <h3 class="text-xl font-bold text-blue-800">Experienced Team</h3>
261
+ </div>
262
+ <p class="text-gray-600">
263
+ Our team combines decades of marketing expertise across industries, bringing both strategic vision and tactical excellence to every project.
264
+ </p>
265
+ </div>
266
+ </div>
267
+
268
+ <div class="mt-16 text-center fade-in">
269
+ <a href="#contact" class="inline-flex items-center px-8 py-3 bg-blue-700 hover:bg-blue-800 text-white rounded-md font-medium text-lg transition duration-300">
270
+ Start Your Growth Journey
271
+ <i class="fas fa-arrow-right ml-2"></i>
272
+ </a>
273
+ </div>
274
+ </div>
275
+ </section>
276
+
277
+ <!-- Contact Section -->
278
+ <section id="contact" class="py-16 md:py-24 bg-gray-50">
279
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
280
+ <div class="lg:grid lg:grid-cols-2 lg:gap-12">
281
+ <div class="mb-12 lg:mb-0 fade-in">
282
+ <h2 class="text-3xl md:text-4xl font-bold mb-6 text-blue-800">
283
+ Ready to <span class="text-blue-600">Grow?</span>
284
+ </h2>
285
+ <p class="text-xl text-gray-600 mb-8">
286
+ Let's discuss how we can help your business achieve its marketing goals.
287
+ </p>
288
+
289
+ <div class="space-y-6">
290
+ <div class="flex items-center">
291
+ <div class="bg-blue-100 w-12 h-12 rounded-full flex items-center justify-center mr-4">
292
+ <i class="fas fa-envelope text-blue-700 text-xl"></i>
293
+ </div>
294
+ <div>
295
+ <p class="text-gray-500">Email us at</p>
296
+ <p class="font-medium text-blue-800">hello@noudasolutions.com</p>
297
+ </div>
298
+ </div>
299
+
300
+ <div class="flex items-center">
301
+ <div class="bg-blue-100 w-12 h-12 rounded-full flex items-center justify-center mr-4">
302
+ <i class="fas fa-phone text-blue-700 text-xl"></i>
303
+ </div>
304
+ <div>
305
+ <p class="text-gray-500">Call us at</p>
306
+ <p class="font-medium text-blue-800">+1 (555) 123-4567</p>
307
+ </div>
308
+ </div>
309
+
310
+ <div class="flex items-center">
311
+ <div class="bg-blue-100 w-12 h-12 rounded-full flex items-center justify-center mr-4">
312
+ <i class="fas fa-map-marker-alt text-blue-700 text-xl"></i>
313
+ </div>
314
+ <div>
315
+ <p class="text-gray-500">Visit us at</p>
316
+ <p class="font-medium text-blue-800">123 Business Ave, Suite 400, New York, NY</p>
317
+ </div>
318
+ </div>
319
+ </div>
320
+
321
+ <div class="mt-8 flex space-x-4">
322
+ <a href="#" class="bg-blue-800 hover:bg-blue-900 text-white w-10 h-10 rounded-full flex items-center justify-center">
323
+ <i class="fab fa-linkedin-in"></i>
324
+ </a>
325
+ <a href="#" class="bg-blue-800 hover:bg-blue-900 text-white w-10 h-10 rounded-full flex items-center justify-center">
326
+ <i class="fab fa-twitter"></i>
327
+ </a>
328
+ <a href="#" class="bg-blue-800 hover:bg-blue-900 text-white w-10 h-10 rounded-full flex items-center justify-center">
329
+ <i class="fab fa-facebook-f"></i>
330
+ </a>
331
+ </div>
332
+ </div>
333
+
334
+ <div class="fade-in">
335
+ <form class="bg-white p-8 rounded-xl shadow-sm">
336
+ <div class="mb-6">
337
+ <label for="name" class="block text-gray-700 font-medium mb-2">Your Name</label>
338
+ <input type="text" id="name" class="w-full px-4 py-3 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-700 focus:border-transparent" placeholder="John Doe">
339
+ </div>
340
+
341
+ <div class="mb-6">
342
+ <label for="email" class="block text-gray-700 font-medium mb-2">Email Address</label>
343
+ <input type="email" id="email" class="w-full px-4 py-3 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-700 focus:border-transparent" placeholder="you@example.com">
344
+ </div>
345
+
346
+ <div class="mb-6">
347
+ <label for="message" class="block text-gray-700 font-medium mb-2">Your Message</label>
348
+ <textarea id="message" rows="4" class="w-full px-4 py-3 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-700 focus:border-transparent" placeholder="Tell us about your marketing needs..."></textarea>
349
+ </div>
350
+
351
+ <button type="submit" class="w-full bg-blue-700 hover:bg-blue-800 text-white py-3 px-6 rounded-md font-medium transition duration-300">
352
+ Send Message
353
+ </button>
354
+ </form>
355
+ </div>
356
+ </div>
357
+ </div>
358
+ </section>
359
+
360
+ <!-- Footer -->
361
+ <footer class="bg-blue-900 text-white py-12">
362
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
363
+ <div class="grid md:grid-cols-4 gap-8 mb-12">
364
+ <div>
365
+ <h3 class="text-xl font-bold text-blue-200 mb-4">NouDa Solutions</h3>
366
+ <p class="text-blue-100">
367
+ Helping businesses grow smarter through strategic marketing solutions.
368
+ </p>
369
+ </div>
370
+
371
+ <div>
372
+ <h4 class="text-lg font-medium text-blue-200 mb-4">Quick Links</h4>
373
+ <ul class="space-y-2">
374
+ <li><a href="#about" class="text-blue-100 hover:text-white transition duration-300">About Us</a></li>
375
+ <li><a href="#services" class="text-blue-100 hover:text-white transition duration-300">Services</a></li>
376
+ <li><a href="#why-us" class="text-blue-100 hover:text-white transition duration-300">Why Choose Us</a></li>
377
+ <li><a href="#contact" class="text-blue-100 hover:text-white transition duration-300">Contact</a></li>
378
+ </ul>
379
+ </div>
380
+
381
+ <div>
382
+ <h4 class="text-lg font-medium text-blue-200 mb-4">Services</h4>
383
+ <ul class="space-y-2">
384
+ <li><a href="#" class="text-blue-100 hover:text-white transition duration-300">Digital Marketing</a></li>
385
+ <li><a href="#" class="text-blue-100 hover:text-white transition duration-300">Branding</a></li>
386
+ <li><a href="#" class="text-blue-100 hover:text-white transition duration-300">Web Development</a></li>
387
+ <li><a href="#" class="text-blue-100 hover:text-white transition duration-300">Strategy Consulting</a></li>
388
+ </ul>
389
+ </div>
390
+
391
+ <div>
392
+ <h4 class="text-lg font-medium text-blue-200 mb-4">Connect</h4>
393
+ <div class="flex space-x-4 mb-4">
394
+ <a href="#" class="text-blue-100 hover:text-white transition duration-300">
395
+ <i class="fab fa-linkedin-in"></i>
396
+ </a>
397
+ <a href="#" class="text-blue-100 hover:text-white transition duration-300">
398
+ <i class="fab fa-twitter"></i>
399
+ </a>
400
+ <a href="#" class="text-blue-100 hover:text-white transition duration-300">
401
+ <i class="fab fa-facebook-f"></i>
402
+ </a>
403
+ <a href="#" class="text-blue-100 hover:text-white transition duration-300">
404
+ <i class="fab fa-instagram"></i>
405
+ </a>
406
+ </div>
407
+ <p class="text-blue-100">Subscribe to our newsletter</p>
408
+ <div class="mt-2 flex">
409
+ <input type="email" placeholder="Your email" class="px-4 py-2 rounded-l-md w-full focus:outline-none text-gray-800">
410
+ <button class="bg-blue-700 hover:bg-blue-800 px-4 py-2 rounded-r-md">
411
+ <i class="fas fa-paper-plane"></i>
412
+ </button>
413
+ </div>
414
+ </div>
415
+ </div>
416
+
417
+ <div class="pt-8 border-t border-blue-800 flex flex-col md:flex-row justify-between items-center">
418
+ <p class="text-blue-100 mb-4 md:mb-0">
419
+ &copy; 2023 NouDa Solutions. All rights reserved.
420
+ </p>
421
+ <div class="flex space-x-6">
422
+ <a href="#" class="text-blue-100 hover:text-white transition duration-300 text-sm">Privacy Policy</a>
423
+ <a href="#" class="text-blue-100 hover:text-white transition duration-300 text-sm">Terms of Service</a>
424
+ <a href="#" class="text-blue-100 hover:text-white transition duration-300 text-sm">Cookie Policy</a>
425
+ </div>
426
+ </div>
427
+ </div>
428
+ </footer>
429
+
430
+ <script>
431
+ // Mobile menu toggle
432
+ document.getElementById('mobile-menu-button').addEventListener('click', function() {
433
+ const menu = document.getElementById('mobile-menu');
434
+ menu.classList.toggle('hidden');
435
+ });
436
+
437
+ // Scroll animation
438
+ document.addEventListener('DOMContentLoaded', function() {
439
+ const fadeElements = document.querySelectorAll('.fade-in');
440
+
441
+ const fadeInOnScroll = function() {
442
+ fadeElements.forEach(function(element) {
443
+ const elementTop = element.getBoundingClientRect().top;
444
+ const windowHeight = window.innerHeight;
445
+
446
+ if (elementTop < windowHeight - 100) {
447
+ element.classList.add('visible');
448
+ element.style.transform = 'translateY(0)';
449
+ }
450
+ });
451
+ };
452
+
453
+ // Set initial state
454
+ fadeElements.forEach(function(element) {
455
+ element.style.transform = 'translateY(20px)';
456
+ });
457
+
458
+ fadeInOnScroll();
459
+ window.addEventListener('scroll', fadeInOnScroll);
460
+ });
461
+ </script>
462
+ <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=youkenyan/test" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
463
+ </html>
prompts.txt ADDED
File without changes