fancycashew commited on
Commit
ef5fa1b
·
verified ·
1 Parent(s): 46eb115

undefined - Initial Deployment

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +466 -18
  3. prompts.txt +0 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Cyberuslabs 2
3
- emoji: 🏆
4
- colorFrom: indigo
5
- colorTo: yellow
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: cyberuslabs-2
3
+ emoji: 🐳
4
+ colorFrom: green
5
+ colorTo: green
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,467 @@
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>Cyberus Labs - Next-Level Cybersecurity Solutions</title>
7
+ <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <script>
10
+ tailwind.config = {
11
+ theme: {
12
+ extend: {
13
+ colors: {
14
+ 'primary-orange': '#e65103',
15
+ 'smoke-white': '#f5f5f5'
16
+ }
17
+ }
18
+ }
19
+ }
20
+ </script>
21
+ <link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
22
+ <script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
23
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
24
+ <script src="https://unpkg.com/feather-icons"></script>
25
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r134/three.min.js"></script>
26
+ <script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.globe.min.js"></script>
27
+ <style>
28
+ :root {
29
+ --primary-orange: #e65103;
30
+ --smoke-white: #f5f5f5;
31
+ }
32
+
33
+ body {
34
+ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
35
+ background-color: #0f172a;
36
+ color: var(--smoke-white);
37
+ }
38
+
39
+ .bg-orange-600 {
40
+ background-color: var(--primary-orange);
41
+ }
42
+
43
+ .hero-bg {
44
+ background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
45
+ }
46
+
47
+ .card-gradient {
48
+ background: linear-gradient(145deg, #1e293b, #0f172a);
49
+ border: 1px solid rgba(255, 255, 255, 0.05);
50
+ }
51
+
52
+ .feature-card:hover {
53
+ transform: translateY(-5px);
54
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
55
+ }
56
+
57
+ .tech-icon {
58
+ background: linear-gradient(135deg, var(--primary-orange) 0%, #ff8c42 100%);
59
+ padding: 1rem;
60
+ border-radius: 1rem;
61
+ }
62
+
63
+ .btn-primary {
64
+ background: linear-gradient(135deg, var(--primary-orange) 0%, #ff6d00 100%);
65
+ transition: all 0.3s ease;
66
+ }
67
+
68
+ .border-orange-600 {
69
+ border-color: var(--primary-orange);
70
+ }
71
+
72
+ .text-orange-500 {
73
+ color: var(--primary-orange);
74
+ }
75
+
76
+ .btn-primary:hover {
77
+ transform: scale(1.05);
78
+ box-shadow: 0 10px 25px -5px rgba(230, 81, 3, 0.4);
79
+ }
80
+
81
+ .section-divider {
82
+ height: 1px;
83
+ background: linear-gradient(90deg, transparent, var(--primary-orange), transparent);
84
+ }
85
+
86
+ .text-gradient {
87
+ background: linear-gradient(90deg, var(--primary-orange), #ff8c42);
88
+ -webkit-background-clip: text;
89
+ -webkit-text-fill-color: transparent;
90
+ }
91
+
92
+ .hover\:bg-orange-600:hover {
93
+ background-color: var(--primary-orange);
94
+ }
95
+ </style>
96
+ </head>
97
+ <body class="bg-slate-900 text-slate-100">
98
+ <!-- Hero Section with Vanta.js Background -->
99
+ <div id="vanta-bg" class="relative h-screen w-full overflow-hidden">
100
+ <div class="absolute inset-0 bg-black bg-opacity-70 z-10"></div>
101
+ <div class="relative z-20 flex flex-col items-center justify-center h-full text-center px-4">
102
+ <h1 class="text-4xl md:text-6xl font-bold mb-6 max-w-4xl">
103
+ Enter the <span class="text-gradient">Credential-Less</span> Era of Cybersecurity
104
+ </h1>
105
+ <p class="text-xl md:text-2xl mb-10 max-w-3xl text-slate-300">
106
+ Eliminate passwords entirely with our patented audio-token technology. Stronger security, simpler access.
107
+ </p>
108
+ <div class="flex flex-col sm:flex-row gap-4">
109
+ <button class="btn-primary px-8 py-4 rounded-lg font-semibold text-lg">
110
+ Request Demo
111
+ </button>
112
+ <button class="bg-transparent border-2 border-orange-600 px-8 py-4 rounded-lg font-semibold text-lg hover:bg-orange-600 transition">
113
+ Learn More
114
+ </button>
115
+ </div>
116
+ </div>
117
+ </div>
118
+
119
+ <!-- Value Proposition Section -->
120
+ <section class="py-20 px-4 max-w-7xl mx-auto">
121
+ <div class="text-center mb-16" data-aos="fade-up">
122
+ <h2 class="text-3xl md:text-4xl font-bold mb-6">Why Choose Cyberus Labs?</h2>
123
+ <div class="w-24 h-1 bg-orange-600 mx-auto"></div>
124
+ </div>
125
+
126
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-12 items-center">
127
+ <div data-aos="fade-right">
128
+ <h3 class="text-2xl font-bold mb-6">The Password Problem</h3>
129
+ <p class="text-lg text-slate-300 mb-6">
130
+ 80% of data breaches involve stolen or weak credentials. Traditional passwords are the weakest link in cybersecurity, vulnerable to phishing, brute force, and social engineering attacks.
131
+ </p>
132
+ <p class="text-lg text-slate-300">
133
+ Cyberus Labs eliminates this vulnerability entirely by removing static credentials from your security infrastructure.
134
+ </p>
135
+ </div>
136
+ <div class="relative" data-aos="fade-left">
137
+ <div class="card-gradient p-8 rounded-2xl border-l-4 border-orange-600">
138
+ <div class="flex items-start mb-6">
139
+ <div class="tech-icon mr-4">
140
+ <i data-feather="shield" class="text-white"></i>
141
+ </div>
142
+ <div>
143
+ <h4 class="text-xl font-bold">Passwordless by Design</h4>
144
+ <p class="text-slate-400 mt-2">No passwords, no credentials to steal</p>
145
+ </div>
146
+ </div>
147
+ <div class="flex items-start mb-6">
148
+ <div class="tech-icon mr-4">
149
+ <i data-feather="zap" class="text-white"></i>
150
+ </div>
151
+ <div>
152
+ <h4 class="text-xl font-bold">Instant Authentication</h4>
153
+ <p class="text-slate-400 mt-2">Verify identity in milliseconds</p>
154
+ </div>
155
+ </div>
156
+ <div class="flex items-start">
157
+ <div class="tech-icon mr-4">
158
+ <i data-feather="globe" class="text-white"></i>
159
+ </div>
160
+ <div>
161
+ <h4 class="text-xl font-bold">Global Reach</h4>
162
+ <p class="text-slate-400 mt-2">Silicon Valley expertise, worldwide deployment</p>
163
+ </div>
164
+ </div>
165
+ </div>
166
+ </div>
167
+ </div>
168
+ </section>
169
+
170
+ <!-- Technology Overview -->
171
+ <section class="py-20 bg-slate-800 px-4">
172
+ <div class="max-w-7xl mx-auto">
173
+ <div class="text-center mb-16" data-aos="fade-up">
174
+ <h2 class="text-3xl md:text-4xl font-bold mb-6">How Our Technology Works</h2>
175
+ <p class="text-xl max-w-3xl mx-auto text-slate-300">
176
+ A three-tier approach combining cutting-edge authentication, lightweight encryption, and predictive AI
177
+ </p>
178
+ <div class="w-24 h-1 bg-orange-600 mx-auto mt-6"></div>
179
+ </div>
180
+
181
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
182
+ <!-- Card 1 -->
183
+ <div class="card-gradient rounded-2xl p-8 feature-card transition-all duration-300" data-aos="fade-up" data-aos-delay="100">
184
+ <div class="tech-icon w-16 h-16 flex items-center justify-center mb-6">
185
+ <i data-feather="volume-2" class="text-white text-2xl"></i>
186
+ </div>
187
+ <h3 class="text-2xl font-bold mb-4">Audio-Token Authentication</h3>
188
+ <p class="text-slate-300 mb-4">
189
+ One-time ultrasonic signals verify user identity and service legitimacy within milliseconds.
190
+ </p>
191
+ <ul class="space-y-2 text-slate-400">
192
+ <li class="flex items-start">
193
+ <i data-feather="check-circle" class="text-orange-500 mr-2 mt-1"></i>
194
+ <span>No reusable credentials</span>
195
+ </li>
196
+ <li class="flex items-start">
197
+ <i data-feather="check-circle" class="text-orange-500 mr-2 mt-1"></i>
198
+ <span>Works offline via sound</span>
199
+ </li>
200
+ <li class="flex items-start">
201
+ <i data-feather="check-circle" class="text-orange-500 mr-2 mt-1"></i>
202
+ <span>Multifactor verification</span>
203
+ </li>
204
+ </ul>
205
+ </div>
206
+
207
+ <!-- Card 2 -->
208
+ <div class="card-gradient rounded-2xl p-8 feature-card transition-all duration-300" data-aos="fade-up" data-aos-delay="200">
209
+ <div class="tech-icon w-16 h-16 flex items-center justify-center mb-6">
210
+ <i data-feather="cpu" class="text-white text-2xl"></i>
211
+ </div>
212
+ <h3 class="text-2xl font-bold mb-4">Lightweight IoT Encryption</h3>
213
+ <p class="text-slate-300 mb-4">
214
+ Protect even the smallest devices with our efficient cryptographic protocol.
215
+ </p>
216
+ <ul class="space-y-2 text-slate-400">
217
+ <li class="flex items-start">
218
+ <i data-feather="check-circle" class="text-orange-500 mr-2 mt-1"></i>
219
+ <span>Runs on low-power chips</span>
220
+ </li>
221
+ <li class="flex items-start">
222
+ <i data-feather="check-circle" class="text-orange-500 mr-2 mt-1"></i>
223
+ <span>No hardware upgrades needed</span>
224
+ </li>
225
+ <li class="flex items-start">
226
+ <i data-feather="check-circle" class="text-orange-500 mr-2 mt-1"></i>
227
+ <span>Secure device-to-device comms</span>
228
+ </li>
229
+ </ul>
230
+ </div>
231
+
232
+ <!-- Card 3 -->
233
+ <div class="card-gradient rounded-2xl p-8 feature-card transition-all duration-300" data-aos="fade-up" data-aos-delay="300">
234
+ <div class="tech-icon w-16 h-16 flex items-center justify-center mb-6">
235
+ <i data-feather="activity" class="text-white text-2xl"></i>
236
+ </div>
237
+ <h3 class="text-2xl font-bold mb-4">AI-Driven Self-Healing</h3>
238
+ <p class="text-slate-300 mb-4">
239
+ Predictive analytics detect threats and automatically repair vulnerabilities.
240
+ </p>
241
+ <ul class="space-y-2 text-slate-400">
242
+ <li class="flex items-start">
243
+ <i data-feather="check-circle" class="text-orange-500 mr-2 mt-1"></i>
244
+ <span>Real-time anomaly detection</span>
245
+ </li>
246
+ <li class="flex items-start">
247
+ <i data-feather="check-circle" class="text-orange-500 mr-2 mt-1"></i>
248
+ <span>Automatic threat isolation</span>
249
+ </li>
250
+ <li class="flex items-start">
251
+ <i data-feather="check-circle" class="text-orange-500 mr-2 mt-1"></i>
252
+ <span>Predictive maintenance</span>
253
+ </li>
254
+ </ul>
255
+ </div>
256
+ </div>
257
+ </div>
258
+ </section>
259
+
260
+ <!-- Key Differentiators -->
261
+ <section class="py-20 px-4 max-w-7xl mx-auto">
262
+ <div class="text-center mb-16" data-aos="fade-up">
263
+ <h2 class="text-3xl md:text-4xl font-bold mb-6">What Sets Us Apart</h2>
264
+ <div class="w-24 h-1 bg-orange-600 mx-auto"></div>
265
+ </div>
266
+
267
+ <div class="grid grid-cols-1 lg:grid-cols-2 gap-12">
268
+ <div class="space-y-8" data-aos="fade-right">
269
+ <div class="flex">
270
+ <div class="mr-6">
271
+ <div class="w-12 h-12 rounded-full bg-orange-600 flex items-center justify-center">
272
+ <i data-feather="lock" class="text-white"></i>
273
+ </div>
274
+ </div>
275
+ <div>
276
+ <h3 class="text-2xl font-bold mb-3">Passwordless Security by Design</h3>
277
+ <p class="text-slate-300">
278
+ We don't just add security layers - we eliminate the fundamental vulnerability. No passwords mean no credential theft, making 80% of attacks impossible.
279
+ </p>
280
+ </div>
281
+ </div>
282
+
283
+ <div class="flex">
284
+ <div class="mr-6">
285
+ <div class="w-12 h-12 rounded-full bg-orange-600 flex items-center justify-center">
286
+ <i data-feather="award" class="text-white"></i>
287
+ </div>
288
+ </div>
289
+ <div>
290
+ <h3 class="text-2xl font-bold mb-3">Patented Audio-Token Technology</h3>
291
+ <p class="text-slate-300">
292
+ Our unique ultrasonic authentication method is protected by patents and offers seamless multifactor security without user friction.
293
+ </p>
294
+ </div>
295
+ </div>
296
+
297
+ <div class="flex">
298
+ <div class="mr-6">
299
+ <div class="w-12 h-12 rounded-full bg-orange-600 flex items-center justify-center">
300
+ <i data-feather="zap" class="text-white"></i>
301
+ </div>
302
+ </div>
303
+ <div>
304
+ <h3 class="text-2xl font-bold mb-3">Lightweight IoT Encryption</h3>
305
+ <p class="text-slate-300">
306
+ Secure even the simplest IoT devices without performance impact. Our protocol runs efficiently on low-power hardware.
307
+ </p>
308
+ </div>
309
+ </div>
310
+ </div>
311
+
312
+ <div class="flex items-center justify-center" data-aos="fade-left">
313
+ <div class="relative">
314
+ <div class="absolute -inset-4 bg-orange-600 rounded-2xl opacity-20 blur"></div>
315
+ <img src="http://static.photos/technology/640x360/42" alt="Cyberus Labs Technology" class="relative rounded-2xl shadow-2xl">
316
+ </div>
317
+ </div>
318
+ </div>
319
+ </section>
320
+
321
+ <!-- Partnerships & Certifications -->
322
+ <section class="py-20 bg-slate-800 px-4">
323
+ <div class="max-w-7xl mx-auto">
324
+ <div class="text-center mb-16" data-aos="fade-up">
325
+ <h2 class="text-3xl md:text-4xl font-bold mb-6">Trusted Partnerships</h2>
326
+ <p class="text-xl max-w-3xl mx-auto text-slate-300">
327
+ Backed by industry leaders and recognized for innovation
328
+ </p>
329
+ <div class="w-24 h-1 bg-orange-600 mx-auto mt-6"></div>
330
+ </div>
331
+
332
+ <div class="grid grid-cols-2 md:grid-cols-4 gap-8 mb-16">
333
+ <div class="flex flex-col items-center justify-center p-6 card-gradient rounded-xl" data-aos="fade-up" data-aos-delay="100">
334
+ <div class="bg-gray-200 border-2 border-dashed rounded-xl w-16 h-16 mb-4"></div>
335
+ <span class="font-bold">Microsoft Partner</span>
336
+ </div>
337
+ <div class="flex flex-col items-center justify-center p-6 card-gradient rounded-xl" data-aos="fade-up" data-aos-delay="200">
338
+ <div class="bg-gray-200 border-2 border-dashed rounded-xl w-16 h-16 mb-4"></div>
339
+ <span class="font-bold">Horizon 2020</span>
340
+ </div>
341
+ <div class="flex flex-col items-center justify-center p-6 card-gradient rounded-xl" data-aos="fade-up" data-aos-delay="300">
342
+ <div class="bg-gray-200 border-2 border-dashed rounded-xl w-16 h-16 mb-4"></div>
343
+ <span class="font-bold">EU Certified</span>
344
+ </div>
345
+ <div class="flex flex-col items-center justify-center p-6 card-gradient rounded-xl" data-aos="fade-up" data-aos-delay="400">
346
+ <div class="bg-gray-200 border-2 border-dashed rounded-xl w-16 h-16 mb-4"></div>
347
+ <span class="font-bold">Award Winning</span>
348
+ </div>
349
+ </div>
350
+
351
+ <div class="bg-slate-900 rounded-2xl p-8 md:p-12" data-aos="fade-up">
352
+ <div class="flex flex-col md:flex-row items-center">
353
+ <div class="md:w-2/3 mb-8 md:mb-0 md:pr-8">
354
+ <h3 class="text-2xl font-bold mb-4">ELIoT Pro Project</h3>
355
+ <p class="text-slate-300 mb-4">
356
+ Our flagship IoT security initiative earned support from the European Union's Horizon 2020 research programme, validating the novelty and credibility of our approach.
357
+ </p>
358
+ <p class="text-slate-300">
359
+ This recognition underscores our commitment to pushing the boundaries of cybersecurity innovation while meeting the highest international standards.
360
+ </p>
361
+ </div>
362
+ <div class="md:w-1/3 flex justify-center">
363
+ <div class="bg-orange-600 text-white py-4 px-8 rounded-lg font-bold text-center">
364
+ EU HORIZON 2020<br>APPROVED
365
+ </div>
366
+ </div>
367
+ </div>
368
+ </div>
369
+ </div>
370
+ </section>
371
+
372
+ <!-- CTA Section -->
373
+ <section class="py-20 px-4">
374
+ <div class="max-w-4xl mx-auto text-center" data-aos="fade-up">
375
+ <h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to Eliminate Password Vulnerabilities?</h2>
376
+ <p class="text-xl text-slate-300 mb-10">
377
+ Take the next step toward next-level cybersecurity. Contact us for a personalized consultation or demo.
378
+ </p>
379
+ <div class="flex flex-col sm:flex-row justify-center gap-4">
380
+ <button class="btn-primary px-8 py-4 rounded-lg font-semibold text-lg">
381
+ Schedule a Demo
382
+ </button>
383
+ <button class="bg-transparent border-2 border-orange-600 px-8 py-4 rounded-lg font-semibold text-lg hover:bg-orange-600 transition">
384
+ Contact Sales
385
+ </button>
386
+ </div>
387
+ </div>
388
+ </section>
389
+
390
+ <!-- Footer -->
391
+ <footer class="bg-slate-900 border-t border-slate-800 py-12 px-4">
392
+ <div class="max-w-7xl mx-auto">
393
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8">
394
+ <div class="md:col-span-2">
395
+ <h3 class="text-2xl font-bold mb-4">Cyberus Labs</h3>
396
+ <p class="text-slate-400 mb-6 max-w-md">
397
+ Next-level cybersecurity solutions designed for today's threats. Eliminating passwords, securing IoT, and predicting threats with AI.
398
+ </p>
399
+ <div class="flex space-x-4">
400
+ <a href="#" class="text-slate-400 hover:text-orange-500">
401
+ <i data-feather="twitter"></i>
402
+ </a>
403
+ <a href="#" class="text-slate-400 hover:text-orange-500">
404
+ <i data-feather="linkedin"></i>
405
+ </a>
406
+ <a href="#" class="text-slate-400 hover:text-orange-500">
407
+ <i data-feather="github"></i>
408
+ </a>
409
+ </div>
410
+ </div>
411
+
412
+ <div>
413
+ <h4 class="text-lg font-bold mb-4">Solutions</h4>
414
+ <ul class="space-y-2 text-slate-400">
415
+ <li><a href="#" class="hover:text-orange-500">Passwordless Auth</a></li>
416
+ <li><a href="#" class="hover:text-orange-500">IoT Security</a></li>
417
+ <li><a href="#" class="hover:text-orange-500">AI Threat Detection</a></li>
418
+ <li><a href="#" class="hover:text-orange-500">Enterprise Solutions</a></li>
419
+ </ul>
420
+ </div>
421
+
422
+ <div>
423
+ <h4 class="text-lg font-bold mb-4">Company</h4>
424
+ <ul class="space-y-2 text-slate-400">
425
+ <li><a href="#" class="hover:text-orange-500">About Us</a></li>
426
+ <li><a href="#" class="hover:text-orange-500">Careers</a></li>
427
+ <li><a href="#" class="hover:text-orange-500">Partners</a></li>
428
+ <li><a href="#" class="hover:text-orange-500">Contact</a></li>
429
+ </ul>
430
+ </div>
431
+ </div>
432
+
433
+ <div class="border-t border-slate-800 mt-12 pt-8 text-center text-slate-500">
434
+ <p>&copy; 2023 Cyberus Labs. All rights reserved.</p>
435
+ </div>
436
+ </div>
437
+ </footer>
438
+
439
+ <script>
440
+ // Initialize Vanta.js
441
+ VANTA.GLOBE({
442
+ el: "#vanta-bg",
443
+ mouseControls: true,
444
+ touchControls: true,
445
+ gyroControls: false,
446
+ minHeight: 200.00,
447
+ minWidth: 200.00,
448
+ scale: 1.00,
449
+ scaleMobile: 1.00,
450
+ color: 0xe65103,
451
+ color2: 0x1e293b,
452
+ backgroundColor: 0x0f172a,
453
+ size: 1.00,
454
+ lineColor: 0xe65103
455
+ });
456
+
457
+ // Initialize AOS
458
+ AOS.init({
459
+ duration: 1000,
460
+ once: true
461
+ });
462
+
463
+ // Initialize Feather Icons
464
+ feather.replace();
465
+ </script>
466
+ </body>
467
  </html>
prompts.txt ADDED
File without changes