Han0101 commited on
Commit
3bc5b1b
·
verified ·
1 Parent(s): 2457849

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +498 -19
  3. prompts.txt +0 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Ad Software Dev Website
3
- emoji: 👁
4
- colorFrom: purple
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: ad-software-dev-website
3
+ emoji: 🐳
4
+ colorFrom: red
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,498 @@
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>Nexus | Innovative Startup</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
+ /* Custom CSS for animations */
11
+ @keyframes fadeIn {
12
+ from { opacity: 0; transform: translateY(20px); }
13
+ to { opacity: 1; transform: translateY(0); }
14
+ }
15
+
16
+ .fade-in {
17
+ animation: fadeIn 0.8s ease-out forwards;
18
+ }
19
+
20
+ .delay-1 { animation-delay: 0.2s; }
21
+ .delay-2 { animation-delay: 0.4s; }
22
+ .delay-3 { animation-delay: 0.6s; }
23
+
24
+ /* Custom gradient background */
25
+ .gradient-bg {
26
+ background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
27
+ }
28
+ </style>
29
+ </head>
30
+ <body class="font-sans antialiased text-gray-800">
31
+ <!-- Navigation -->
32
+ <nav class="bg-white shadow-sm sticky top-0 z-50">
33
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
34
+ <div class="flex justify-between h-16">
35
+ <div class="flex items-center">
36
+ <div class="flex-shrink-0 flex items-center">
37
+ <i class="fas fa-atom text-indigo-600 text-2xl mr-2"></i>
38
+ <span class="text-xl font-bold text-gray-900">Nexus</span>
39
+ </div>
40
+ </div>
41
+ <div class="hidden md:ml-6 md:flex md:items-center md:space-x-8">
42
+ <a href="#home" class="text-gray-900 inline-flex items-center px-1 pt-1 border-b-2 border-indigo-500 text-sm font-medium">Home</a>
43
+ <a href="#projects" class="text-gray-500 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 border-transparent hover:border-gray-300 text-sm font-medium">Projects</a>
44
+ <a href="#team" class="text-gray-500 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 border-transparent hover:border-gray-300 text-sm font-medium">Team</a>
45
+ <a href="#careers" class="text-gray-500 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 border-transparent hover:border-gray-300 text-sm font-medium">Careers</a>
46
+ </div>
47
+ <div class="-mr-2 flex items-center md:hidden">
48
+ <button type="button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-indigo-500" aria-controls="mobile-menu" aria-expanded="false">
49
+ <span class="sr-only">Open main menu</span>
50
+ <i class="fas fa-bars"></i>
51
+ </button>
52
+ </div>
53
+ </div>
54
+ </div>
55
+ </nav>
56
+
57
+ <!-- Hero Section -->
58
+ <section id="home" class="gradient-bg py-20">
59
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
60
+ <div class="lg:text-center">
61
+ <h1 class="text-4xl tracking-tight font-extrabold text-gray-900 sm:text-5xl md:text-6xl fade-in">
62
+ <span class="block">Building the future</span>
63
+ <span class="block text-indigo-600">today</span>
64
+ </h1>
65
+ <p class="mt-3 max-w-md mx-auto text-base text-gray-500 sm:text-lg md:mt-5 md:text-xl md:max-w-3xl fade-in delay-1">
66
+ We're a passionate team creating innovative solutions to complex problems.
67
+ </p>
68
+ <div class="mt-5 sm:mt-8 sm:flex sm:justify-center fade-in delay-2">
69
+ <div class="rounded-md shadow">
70
+ <a href="#projects" class="w-full flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-md text-white bg-indigo-600 hover:bg-indigo-700 md:py-4 md:text-lg md:px-10">
71
+ Our Projects
72
+ </a>
73
+ </div>
74
+ <div class="mt-3 sm:mt-0 sm:ml-3">
75
+ <a href="#careers" class="w-full flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-md text-indigo-700 bg-indigo-100 hover:bg-indigo-200 md:py-4 md:text-lg md:px-10">
76
+ Join Us
77
+ </a>
78
+ </div>
79
+ </div>
80
+ </div>
81
+ </div>
82
+ </section>
83
+
84
+ <!-- Projects Section -->
85
+ <section id="projects" class="py-20 bg-white">
86
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
87
+ <div class="lg:text-center mb-12">
88
+ <h2 class="text-base text-indigo-600 font-semibold tracking-wide uppercase">Projects</h2>
89
+ <p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl">
90
+ What we're working on
91
+ </p>
92
+ <p class="mt-4 max-w-2xl text-xl text-gray-500 lg:mx-auto">
93
+ Our current initiatives and ongoing projects.
94
+ </p>
95
+ </div>
96
+
97
+ <!-- PROJECTS GRID - ADD YOUR PROJECTS HERE -->
98
+ <div class="mt-10">
99
+ <div class="grid gap-10 lg:grid-cols-3 md:grid-cols-2">
100
+ <!-- Project 1 -->
101
+ <div class="flex flex-col rounded-lg shadow-lg overflow-hidden transform transition hover:scale-105 duration-300">
102
+ <div class="flex-shrink-0">
103
+ <img class="h-48 w-full object-cover" src="https://images.unsplash.com/photo-1499750310107-5fef28a66643?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1470&q=80" alt="Project image">
104
+ </div>
105
+ <div class="flex-1 bg-white p-6 flex flex-col justify-between">
106
+ <div class="flex-1">
107
+ <p class="text-sm font-medium text-indigo-600">
108
+ Development
109
+ </p>
110
+ <div class="block mt-2">
111
+ <p class="text-xl font-semibold text-gray-900">Project Aurora</p>
112
+ <p class="mt-3 text-base text-gray-500">
113
+ A revolutionary platform for decentralized applications. Currently in beta testing phase.
114
+ </p>
115
+ </div>
116
+ </div>
117
+ <div class="mt-6 flex items-center">
118
+ <div class="flex-shrink-0">
119
+ <span class="inline-flex items-center justify-center h-10 w-10 rounded-full bg-indigo-100">
120
+ <i class="fas fa-code text-indigo-600"></i>
121
+ </span>
122
+ </div>
123
+ <div class="ml-3">
124
+ <p class="text-sm font-medium text-gray-900">
125
+ Engineering Team
126
+ </p>
127
+ <div class="flex space-x-1 text-sm text-gray-500">
128
+ <time datetime="2023-01-01">Launched: Jan 2023</time>
129
+ </div>
130
+ </div>
131
+ </div>
132
+ </div>
133
+ </div>
134
+
135
+ <!-- Project 2 -->
136
+ <div class="flex flex-col rounded-lg shadow-lg overflow-hidden transform transition hover:scale-105 duration-300">
137
+ <div class="flex-shrink-0">
138
+ <img class="h-48 w-full object-cover" src="https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1470&q=80" alt="Project image">
139
+ </div>
140
+ <div class="flex-1 bg-white p-6 flex flex-col justify-between">
141
+ <div class="flex-1">
142
+ <p class="text-sm font-medium text-indigo-600">
143
+ Research
144
+ </p>
145
+ <div class="block mt-2">
146
+ <p class="text-xl font-semibold text-gray-900">Quantum AI</p>
147
+ <p class="mt-3 text-base text-gray-500">
148
+ Exploring the intersection of quantum computing and artificial intelligence. Early research phase.
149
+ </p>
150
+ </div>
151
+ </div>
152
+ <div class="mt-6 flex items-center">
153
+ <div class="flex-shrink-0">
154
+ <span class="inline-flex items-center justify-center h-10 w-10 rounded-full bg-indigo-100">
155
+ <i class="fas fa-brain text-indigo-600"></i>
156
+ </span>
157
+ </div>
158
+ <div class="ml-3">
159
+ <p class="text-sm font-medium text-gray-900">
160
+ Research Team
161
+ </p>
162
+ <div class="flex space-x-1 text-sm text-gray-500">
163
+ <time datetime="2023-03-15">Started: Mar 2023</time>
164
+ </div>
165
+ </div>
166
+ </div>
167
+ </div>
168
+ </div>
169
+
170
+ <!-- Project 3 - ADD MORE PROJECTS AS NEEDED -->
171
+ <div class="flex flex-col rounded-lg shadow-lg overflow-hidden transform transition hover:scale-105 duration-300">
172
+ <div class="flex-shrink-0">
173
+ <img class="h-48 w-full object-cover" src="https://images.unsplash.com/photo-1516321318423-f06f85e504b3?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1470&q=80" alt="Project image">
174
+ </div>
175
+ <div class="flex-1 bg-white p-6 flex flex-col justify-between">
176
+ <div class="flex-1">
177
+ <p class="text-sm font-medium text-indigo-600">
178
+ Product
179
+ </p>
180
+ <div class="block mt-2">
181
+ <p class="text-xl font-semibold text-gray-900">Nexus Connect</p>
182
+ <p class="mt-3 text-base text-gray-500">
183
+ A seamless integration platform for enterprise systems. Currently in private preview.
184
+ </p>
185
+ </div>
186
+ </div>
187
+ <div class="mt-6 flex items-center">
188
+ <div class="flex-shrink-0">
189
+ <span class="inline-flex items-center justify-center h-10 w-10 rounded-full bg-indigo-100">
190
+ <i class="fas fa-plug text-indigo-600"></i>
191
+ </span>
192
+ </div>
193
+ <div class="ml-3">
194
+ <p class="text-sm font-medium text-gray-900">
195
+ Product Team
196
+ </p>
197
+ <div class="flex space-x-1 text-sm text-gray-500">
198
+ <time datetime="2022-11-01">Started: Nov 2022</time>
199
+ </div>
200
+ </div>
201
+ </div>
202
+ </div>
203
+ </div>
204
+ </div>
205
+ </div>
206
+ </div>
207
+ </section>
208
+
209
+ <!-- Team Section -->
210
+ <section id="team" class="py-20 bg-gray-50">
211
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
212
+ <div class="lg:text-center mb-12">
213
+ <h2 class="text-base text-indigo-600 font-semibold tracking-wide uppercase">Team</h2>
214
+ <p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl">
215
+ Meet our team
216
+ </p>
217
+ <p class="mt-4 max-w-2xl text-xl text-gray-500 lg:mx-auto">
218
+ The brilliant minds behind our success.
219
+ </p>
220
+ </div>
221
+
222
+ <!-- TEAM MEMBERS - ADD YOUR TEAM HERE -->
223
+ <div class="grid gap-10 lg:grid-cols-3 md:grid-cols-2">
224
+ <!-- Team Member 1 -->
225
+ <div class="flex flex-col items-center text-center bg-white p-8 rounded-lg shadow-md transform transition hover:scale-105 duration-300">
226
+ <img class="h-32 w-32 rounded-full object-cover mb-4" src="https://images.unsplash.com/photo-1560250097-0b93528c311a?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=687&q=80" alt="Team member">
227
+ <h3 class="text-xl font-bold text-gray-900">Alex Johnson</h3>
228
+ <p class="text-indigo-600">CEO & Founder</p>
229
+ <p class="mt-3 text-gray-500">
230
+ Visionary leader with 15+ years in tech entrepreneurship.
231
+ </p>
232
+ <div class="mt-4 flex space-x-3">
233
+ <a href="#" class="text-gray-400 hover:text-gray-500">
234
+ <i class="fab fa-linkedin-in"></i>
235
+ </a>
236
+ <a href="#" class="text-gray-400 hover:text-gray-500">
237
+ <i class="fab fa-twitter"></i>
238
+ </a>
239
+ </div>
240
+ </div>
241
+
242
+ <!-- Team Member 2 -->
243
+ <div class="flex flex-col items-center text-center bg-white p-8 rounded-lg shadow-md transform transition hover:scale-105 duration-300">
244
+ <img class="h-32 w-32 rounded-full object-cover mb-4" src="https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=688&q=80" alt="Team member">
245
+ <h3 class="text-xl font-bold text-gray-900">Sarah Chen</h3>
246
+ <p class="text-indigo-600">CTO</p>
247
+ <p class="mt-3 text-gray-500">
248
+ Engineering leader with expertise in scalable systems.
249
+ </p>
250
+ <div class="mt-4 flex space-x-3">
251
+ <a href="#" class="text-gray-400 hover:text-gray-500">
252
+ <i class="fab fa-linkedin-in"></i>
253
+ </a>
254
+ <a href="#" class="text-gray-400 hover:text-gray-500">
255
+ <i class="fab fa-github"></i>
256
+ </a>
257
+ </div>
258
+ </div>
259
+
260
+ <!-- Team Member 3 -->
261
+ <div class="flex flex-col items-center text-center bg-white p-8 rounded-lg shadow-md transform transition hover:scale-105 duration-300">
262
+ <img class="h-32 w-32 rounded-full object-cover mb-4" src="https://images.unsplash.com/photo-1568602471122-7832951cc4c5?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1470&q=80" alt="Team member">
263
+ <h3 class="text-xl font-bold text-gray-900">Michael Rodriguez</h3>
264
+ <p class="text-indigo-600">Head of Product</p>
265
+ <p class="mt-3 text-gray-500">
266
+ Product strategist focused on user-centered design.
267
+ </p>
268
+ <div class="mt-4 flex space-x-3">
269
+ <a href="#" class="text-gray-400 hover:text-gray-500">
270
+ <i class="fab fa-linkedin-in"></i>
271
+ </a>
272
+ <a href="#" class="text-gray-400 hover:text-gray-500">
273
+ <i class="fab fa-twitter"></i>
274
+ </a>
275
+ </div>
276
+ </div>
277
+
278
+ <!-- ADD MORE TEAM MEMBERS AS NEEDED -->
279
+ </div>
280
+
281
+ <div class="mt-12 text-center">
282
+ <p class="text-gray-500">
283
+ And 15+ other talented professionals across engineering, design, and operations.
284
+ </p>
285
+ </div>
286
+ </div>
287
+ </section>
288
+
289
+ <!-- Careers Section -->
290
+ <section id="careers" class="py-20 bg-white">
291
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
292
+ <div class="lg:text-center mb-12">
293
+ <h2 class="text-base text-indigo-600 font-semibold tracking-wide uppercase">Careers</h2>
294
+ <p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl">
295
+ Join our team
296
+ </p>
297
+ <p class="mt-4 max-w-2xl text-xl text-gray-500 lg:mx-auto">
298
+ Help us build the future.
299
+ </p>
300
+ </div>
301
+
302
+ <div class="mt-10">
303
+ <div class="bg-indigo-50 rounded-lg p-8 md:p-12">
304
+ <div class="md:flex">
305
+ <div class="md:flex-shrink-0">
306
+ <img class="h-32 w-32 rounded-full object-cover" src="https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1470&q=80" alt="Team working">
307
+ </div>
308
+ <div class="mt-4 md:mt-0 md:ml-6">
309
+ <h3 class="text-2xl font-bold text-gray-900">Why work with us?</h3>
310
+ <p class="mt-3 text-gray-600">
311
+ We offer competitive salaries, equity, comprehensive benefits, and a flexible work environment.
312
+ Most importantly, you'll work on challenging problems with smart, passionate people.
313
+ </p>
314
+ <div class="mt-6">
315
+ <a href="#open-positions" class="inline-flex items-center px-4 py-2 border border-transparent text-sm font-medium rounded-md shadow-sm text-white bg-indigo-600 hover:bg-indigo-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500">
316
+ View open positions
317
+ <i class="fas fa-arrow-right ml-2"></i>
318
+ </a>
319
+ </div>
320
+ </div>
321
+ </div>
322
+ </div>
323
+
324
+ <!-- OPEN POSITIONS - ADD YOUR JOB LISTINGS HERE -->
325
+ <div id="open-positions" class="mt-16">
326
+ <h3 class="text-xl font-bold text-gray-900 mb-6">Current Openings</h3>
327
+
328
+ <div class="space-y-4">
329
+ <!-- Job 1 -->
330
+ <div class="bg-white shadow overflow-hidden sm:rounded-lg transform transition hover:scale-[1.01] duration-300">
331
+ <div class="px-4 py-5 sm:px-6 flex justify-between items-center">
332
+ <div>
333
+ <h3 class="text-lg leading-6 font-medium text-gray-900">Senior Frontend Engineer</h3>
334
+ <p class="mt-1 max-w-2xl text-sm text-gray-500">Engineering • Full-time • Remote</p>
335
+ </div>
336
+ <div>
337
+ <button class="inline-flex items-center px-4 py-2 border border-transparent text-sm font-medium rounded-md shadow-sm text-white bg-indigo-600 hover:bg-indigo-700">
338
+ Apply now
339
+ </button>
340
+ </div>
341
+ </div>
342
+ </div>
343
+
344
+ <!-- Job 2 -->
345
+ <div class="bg-white shadow overflow-hidden sm:rounded-lg transform transition hover:scale-[1.01] duration-300">
346
+ <div class="px-4 py-5 sm:px-6 flex justify-between items-center">
347
+ <div>
348
+ <h3 class="text-lg leading-6 font-medium text-gray-900">Product Designer</h3>
349
+ <p class="mt-1 max-w-2xl text-sm text-gray-500">Design • Full-time • Hybrid</p>
350
+ </div>
351
+ <div>
352
+ <button class="inline-flex items-center px-4 py-2 border border-transparent text-sm font-medium rounded-md shadow-sm text-white bg-indigo-600 hover:bg-indigo-700">
353
+ Apply now
354
+ </button>
355
+ </div>
356
+ </div>
357
+ </div>
358
+
359
+ <!-- Job 3 -->
360
+ <div class="bg-white shadow overflow-hidden sm:rounded-lg transform transition hover:scale-[1.01] duration-300">
361
+ <div class="px-4 py-5 sm:px-6 flex justify-between items-center">
362
+ <div>
363
+ <h3 class="text-lg leading-6 font-medium text-gray-900">DevOps Engineer</h3>
364
+ <p class="mt-1 max-w-2xl text-sm text-gray-500">Engineering • Full-time • Remote</p>
365
+ </div>
366
+ <div>
367
+ <button class="inline-flex items-center px-4 py-2 border border-transparent text-sm font-medium rounded-md shadow-sm text-white bg-indigo-600 hover:bg-indigo-700">
368
+ Apply now
369
+ </button>
370
+ </div>
371
+ </div>
372
+ </div>
373
+
374
+ <!-- ADD MORE JOB LISTINGS AS NEEDED -->
375
+ </div>
376
+
377
+ <div class="mt-12 text-center">
378
+ <p class="text-gray-500">
379
+ Don't see the perfect role? We're always looking for exceptional talent.
380
+ </p>
381
+ <div class="mt-4">
382
+ <a href="#" class="inline-flex items-center px-4 py-2 border border-transparent text-sm font-medium rounded-md shadow-sm text-indigo-700 bg-indigo-100 hover:bg-indigo-200">
383
+ Send us your resume
384
+ <i class="fas fa-paper-plane ml-2"></i>
385
+ </a>
386
+ </div>
387
+ </div>
388
+ </div>
389
+ </div>
390
+ </div>
391
+ </section>
392
+
393
+ <!-- Footer -->
394
+ <footer class="bg-gray-800">
395
+ <div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:px-8">
396
+ <div class="grid grid-cols-2 md:grid-cols-4 gap-8">
397
+ <div>
398
+ <h3 class="text-white text-sm font-semibold tracking-wider uppercase">Company</h3>
399
+ <ul class="mt-4 space-y-2">
400
+ <li><a href="#home" class="text-gray-300 hover:text-white">About</a></li>
401
+ <li><a href="#projects" class="text-gray-300 hover:text-white">Projects</a></li>
402
+ <li><a href="#team" class="text-gray-300 hover:text-white">Team</a></li>
403
+ <li><a href="#careers" class="text-gray-300 hover:text-white">Careers</a></li>
404
+ </ul>
405
+ </div>
406
+ <div>
407
+ <h3 class="text-white text-sm font-semibold tracking-wider uppercase">Legal</h3>
408
+ <ul class="mt-4 space-y-2">
409
+ <li><a href="#" class="text-gray-300 hover:text-white">Privacy</a></li>
410
+ <li><a href="#" class="text-gray-300 hover:text-white">Terms</a></li>
411
+ <li><a href="#" class="text-gray-300 hover:text-white">Cookie Policy</a></li>
412
+ </ul>
413
+ </div>
414
+ <div>
415
+ <h3 class="text-white text-sm font-semibold tracking-wider uppercase">Connect</h3>
416
+ <ul class="mt-4 space-y-2">
417
+ <li><a href="#" class="text-gray-300 hover:text-white">Twitter</a></li>
418
+ <li><a href="#" class="text-gray-300 hover:text-white">LinkedIn</a></li>
419
+ <li><a href="#" class="text-gray-300 hover:text-white">GitHub</a></li>
420
+ </ul>
421
+ </div>
422
+ <div>
423
+ <h3 class="text-white text-sm font-semibold tracking-wider uppercase">Contact</h3>
424
+ <ul class="mt-4 space-y-2">
425
+ <li class="text-gray-300">hello@nexus.example</li>
426
+ <li class="text-gray-300">+1 (555) 123-4567</li>
427
+ <li class="text-gray-300">123 Startup St, San Francisco, CA</li>
428
+ </ul>
429
+ </div>
430
+ </div>
431
+ <div class="mt-8 border-t border-gray-700 pt-8 md:flex md:items-center md:justify-between">
432
+ <div class="flex space-x-6 md:order-2">
433
+ <a href="#" class="text-gray-400 hover:text-gray-300">
434
+ <i class="fab fa-twitter"></i>
435
+ </a>
436
+ <a href="#" class="text-gray-400 hover:text-gray-300">
437
+ <i class="fab fa-linkedin-in"></i>
438
+ </a>
439
+ <a href="#" class="text-gray-400 hover:text-gray-300">
440
+ <i class="fab fa-github"></i>
441
+ </a>
442
+ </div>
443
+ <p class="mt-8 text-base text-gray-400 md:mt-0 md:order-1">
444
+ &copy; 2023 Nexus. All rights reserved.
445
+ </p>
446
+ </div>
447
+ </div>
448
+ </footer>
449
+
450
+ <script>
451
+ // Simple JavaScript for mobile menu toggle
452
+ document.addEventListener('DOMContentLoaded', function() {
453
+ const mobileMenuButton = document.querySelector('button[aria-controls="mobile-menu"]');
454
+
455
+ // Add click event for mobile menu toggle
456
+ // Note: You would need to add the mobile menu HTML and more JS for full functionality
457
+ mobileMenuButton.addEventListener('click', function() {
458
+ alert('Mobile menu would open here. Add your menu structure and JavaScript to toggle it.');
459
+ });
460
+
461
+ // Smooth scrolling for anchor links
462
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
463
+ anchor.addEventListener('click', function (e) {
464
+ e.preventDefault();
465
+
466
+ const targetId = this.getAttribute('href');
467
+ const targetElement = document.querySelector(targetId);
468
+
469
+ if (targetElement) {
470
+ window.scrollTo({
471
+ top: targetElement.offsetTop - 70,
472
+ behavior: 'smooth'
473
+ });
474
+ }
475
+ });
476
+ });
477
+
478
+ // Add fade-in animation to elements as they come into view
479
+ const fadeElements = document.querySelectorAll('.fade-in');
480
+
481
+ const fadeObserver = new IntersectionObserver((entries) => {
482
+ entries.forEach(entry => {
483
+ if (entry.isIntersecting) {
484
+ entry.target.style.opacity = 1;
485
+ entry.target.style.transform = 'translateY(0)';
486
+ }
487
+ });
488
+ }, { threshold: 0.1 });
489
+
490
+ fadeElements.forEach(element => {
491
+ element.style.opacity = 0;
492
+ element.style.transform = 'translateY(20px)';
493
+ fadeObserver.observe(element);
494
+ });
495
+ });
496
+ </script>
497
+ <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=Han0101/ad-software-dev-website" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
498
+ </html>
prompts.txt ADDED
File without changes