Alexo19 commited on
Commit
28d1983
·
verified ·
1 Parent(s): c75f004

https://mega.nz/folder/cL0GlbTS#qEg_PjOdexKy4G0ozhVKDw Open this can help me understand everything

Browse files
Files changed (2) hide show
  1. README.md +7 -4
  2. index.html +373 -18
README.md CHANGED
@@ -1,10 +1,13 @@
1
  ---
2
- title: Digital Horizon Explorer
3
- emoji: 🌍
4
  colorFrom: green
5
- colorTo: blue
 
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: Digital Horizon Explorer 🌌
 
3
  colorFrom: green
4
+ colorTo: red
5
+ emoji: 🐳
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite-v3
10
  ---
11
 
12
+ # Welcome to your new DeepSite project!
13
+ This project was created with [DeepSite](https://deepsite.hf.co).
index.html CHANGED
@@ -1,19 +1,374 @@
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>Digital Horizon Explorer</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <script src="https://unpkg.com/feather-icons"></script>
9
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
10
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r134/three.min.js"></script>
11
+ <script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.net.min.js"></script>
12
+ <style>
13
+ .hero-gradient {
14
+ background: linear-gradient(135deg, rgba(15,23,42,0.95) 0%, rgba(30,41,59,0.95) 100%);
15
+ }
16
+ .card-hover {
17
+ transition: all 0.3s ease;
18
+ }
19
+ .card-hover:hover {
20
+ transform: translateY(-5px);
21
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
22
+ }
23
+ .glow {
24
+ animation: glow 2s infinite alternate;
25
+ }
26
+ @keyframes glow {
27
+ from {
28
+ box-shadow: 0 0 5px rgba(99, 102, 241, 0.5);
29
+ }
30
+ to {
31
+ box-shadow: 0 0 20px rgba(99, 102, 241, 0.8);
32
+ }
33
+ }
34
+ </style>
35
+ </head>
36
+ <body class="bg-slate-50 text-slate-800">
37
+ <!-- Vanta.js Background -->
38
+ <div id="vanta-bg" class="fixed top-0 left-0 w-full h-full -z-10"></div>
39
+
40
+ <!-- Navigation -->
41
+ <nav class="bg-white/80 backdrop-blur-md shadow-sm fixed w-full z-50">
42
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
43
+ <div class="flex justify-between h-16">
44
+ <div class="flex items-center">
45
+ <div class="flex-shrink-0 flex items-center">
46
+ <i data-feather="compass" class="text-indigo-600 h-6 w-6"></i>
47
+ <span class="ml-2 font-bold text-xl bg-clip-text text-transparent bg-gradient-to-r from-indigo-600 to-purple-600">DigitalHorizon</span>
48
+ </div>
49
+ </div>
50
+ <div class="hidden md:flex items-center space-x-8">
51
+ <a href="#" class="text-slate-700 hover:text-indigo-600 font-medium transition">Home</a>
52
+ <a href="#" class="text-slate-700 hover:text-indigo-600 font-medium transition">Features</a>
53
+ <a href="#" class="text-slate-700 hover:text-indigo-600 font-medium transition">Pricing</a>
54
+ <a href="#" class="text-slate-700 hover:text-indigo-600 font-medium transition">About</a>
55
+ <button class="bg-indigo-600 text-white px-4 py-2 rounded-lg hover:bg-indigo-700 transition font-medium">
56
+ Get Started
57
+ </button>
58
+ </div>
59
+ <div class="md:hidden flex items-center">
60
+ <button id="menu-btn" class="text-slate-700 hover:text-indigo-600">
61
+ <i data-feather="menu"></i>
62
+ </button>
63
+ </div>
64
+ </div>
65
+ </div>
66
+ </nav>
67
+
68
+ <!-- Mobile Menu -->
69
+ <div id="mobile-menu" class="hidden md:hidden fixed inset-0 bg-white/90 backdrop-blur-md z-40 pt-16">
70
+ <div class="px-4 py-8 space-y-6">
71
+ <a href="#" class="block text-slate-700 hover:text-indigo-600 font-medium text-lg">Home</a>
72
+ <a href="#" class="block text-slate-700 hover:text-indigo-600 font-medium text-lg">Features</a>
73
+ <a href="#" class="block text-slate-700 hover:text-indigo-600 font-medium text-lg">Pricing</a>
74
+ <a href="#" class="block text-slate-700 hover:text-indigo-600 font-medium text-lg">About</a>
75
+ <button class="w-full bg-indigo-600 text-white px-4 py-3 rounded-lg hover:bg-indigo-700 transition font-medium">
76
+ Get Started
77
+ </button>
78
+ </div>
79
+ </div>
80
+
81
+ <!-- Hero Section -->
82
+ <section class="hero-gradient min-h-screen flex items-center pt-16 pb-24">
83
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
84
+ <div class="text-center">
85
+ <h1 class="text-4xl md:text-6xl font-bold text-white mb-6">
86
+ Explore The <span class="text-indigo-400">Digital Horizon</span>
87
+ </h1>
88
+ <p class="text-xl md:text-2xl text-slate-300 max-w-3xl mx-auto mb-10">
89
+ Discover cutting-edge solutions that transform your digital experience with our innovative platform.
90
+ </p>
91
+ <div class="flex flex-col sm:flex-row justify-center gap-4">
92
+ <button class="bg-indigo-600 hover:bg-indigo-700 text-white px-8 py-4 rounded-lg font-bold text-lg transition transform hover:scale-105 glow">
93
+ Start Exploring
94
+ <i data-feather="arrow-right" class="inline ml-2"></i>
95
+ </button>
96
+ <button class="bg-white/10 hover:bg-white/20 text-white px-8 py-4 rounded-lg font-bold text-lg transition border border-white/20 backdrop-blur-sm">
97
+ Learn More
98
+ </button>
99
+ </div>
100
+ </div>
101
+ </div>
102
+ </section>
103
+
104
+ <!-- Features Section -->
105
+ <section class="py-20 bg-white">
106
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
107
+ <div class="text-center mb-16">
108
+ <h2 class="text-3xl md:text-4xl font-bold text-slate-800 mb-4">
109
+ Powerful Features
110
+ </h2>
111
+ <p class="text-lg text-slate-600 max-w-2xl mx-auto">
112
+ Our platform is packed with innovative tools to help you succeed in the digital world.
113
+ </p>
114
+ </div>
115
+
116
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
117
+ <!-- Feature 1 -->
118
+ <div class="bg-slate-50 rounded-xl p-8 card-hover">
119
+ <div class="w-14 h-14 bg-indigo-100 rounded-lg flex items-center justify-center mb-6">
120
+ <i data-feather="zap" class="text-indigo-600 w-6 h-6"></i>
121
+ </div>
122
+ <h3 class="text-xl font-bold text-slate-800 mb-3">Lightning Fast</h3>
123
+ <p class="text-slate-600">
124
+ Experience unparalleled speed with our optimized infrastructure that delivers content in milliseconds.
125
+ </p>
126
+ </div>
127
+
128
+ <!-- Feature 2 -->
129
+ <div class="bg-slate-50 rounded-xl p-8 card-hover">
130
+ <div class="w-14 h-14 bg-indigo-100 rounded-lg flex items-center justify-center mb-6">
131
+ <i data-feather="shield" class="text-indigo-600 w-6 h-6"></i>
132
+ </div>
133
+ <h3 class="text-xl font-bold text-slate-800 mb-3">Enterprise Security</h3>
134
+ <p class="text-slate-600">
135
+ Your data is protected with military-grade encryption and multi-layered security protocols.
136
+ </p>
137
+ </div>
138
+
139
+ <!-- Feature 3 -->
140
+ <div class="bg-slate-50 rounded-xl p-8 card-hover">
141
+ <div class="w-14 h-14 bg-indigo-100 rounded-lg flex items-center justify-center mb-6">
142
+ <i data-feather="bar-chart-2" class="text-indigo-600 w-6 h-6"></i>
143
+ </div>
144
+ <h3 class="text-xl font-bold text-slate-800 mb-3">Advanced Analytics</h3>
145
+ <p class="text-slate-600">
146
+ Gain valuable insights with our comprehensive analytics dashboard and real-time reporting.
147
+ </p>
148
+ </div>
149
+ </div>
150
+ </div>
151
+ </section>
152
+
153
+ <!-- Testimonials -->
154
+ <section class="py-20 bg-slate-100">
155
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
156
+ <div class="text-center mb-16">
157
+ <h2 class="text-3xl md:text-4xl font-bold text-slate-800 mb-4">
158
+ Trusted by Industry Leaders
159
+ </h2>
160
+ <p class="text-lg text-slate-600 max-w-2xl mx-auto">
161
+ Join thousands of companies who have transformed their digital presence with us.
162
+ </p>
163
+ </div>
164
+
165
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
166
+ <!-- Testimonial 1 -->
167
+ <div class="bg-white rounded-xl p-6 shadow-sm card-hover">
168
+ <div class="flex items-center mb-4">
169
+ <img src="http://static.photos/people/200x200/1" alt="Sarah Johnson" class="w-12 h-12 rounded-full mr-4">
170
+ <div>
171
+ <h4 class="font-bold text-slate-800">Sarah Johnson</h4>
172
+ <p class="text-slate-500 text-sm">CTO, TechCorp</p>
173
+ </div>
174
+ </div>
175
+ <p class="text-slate-600 italic">
176
+ "Digital Horizon has completely transformed our workflow. The speed and reliability are unmatched."
177
+ </p>
178
+ <div class="flex mt-4">
179
+ <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-yellow-400"></i>
180
+ <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-yellow-400"></i>
181
+ <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-yellow-400"></i>
182
+ <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-yellow-400"></i>
183
+ <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-yellow-400"></i>
184
+ </div>
185
+ </div>
186
+
187
+ <!-- Testimonial 2 -->
188
+ <div class="bg-white rounded-xl p-6 shadow-sm card-hover">
189
+ <div class="flex items-center mb-4">
190
+ <img src="http://static.photos/people/200x200/2" alt="Michael Chen" class="w-12 h-12 rounded-full mr-4">
191
+ <div>
192
+ <h4 class="font-bold text-slate-800">Michael Chen</h4>
193
+ <p class="text-slate-500 text-sm">CEO, InnovateX</p>
194
+ </div>
195
+ </div>
196
+ <p class="text-slate-600 italic">
197
+ "The analytics dashboard alone is worth the investment. The insights we've gained have been invaluable."
198
+ </p>
199
+ <div class="flex mt-4">
200
+ <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-yellow-400"></i>
201
+ <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-yellow-400"></i>
202
+ <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-yellow-400"></i>
203
+ <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-yellow-400"></i>
204
+ <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-yellow-400"></i>
205
+ </div>
206
+ </div>
207
+
208
+ <!-- Testimonial 3 -->
209
+ <div class="bg-white rounded-xl p-6 shadow-sm card-hover">
210
+ <div class="flex items-center mb-4">
211
+ <img src="http://static.photos/people/200x200/3" alt="Emily Rodriguez" class="w-12 h-12 rounded-full mr-4">
212
+ <div>
213
+ <h4 class="font-bold text-slate-800">Emily Rodriguez</h4>
214
+ <p class="text-slate-500 text-sm">Director, Global Solutions</p>
215
+ </div>
216
+ </div>
217
+ <p class="text-slate-600 italic">
218
+ "Implementation was seamless and their support team is fantastic. Highly recommend for enterprise solutions."
219
+ </p>
220
+ <div class="flex mt-4">
221
+ <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-yellow-400"></i>
222
+ <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-yellow-400"></i>
223
+ <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-yellow-400"></i>
224
+ <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-yellow-400"></i>
225
+ <i data-feather="star" class="text-yellow-400 w-4 h-4"></i>
226
+ </div>
227
+ </div>
228
+ </div>
229
+ </div>
230
+ </section>
231
+
232
+ <!-- CTA Section -->
233
+ <section class="py-20 bg-indigo-700">
234
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
235
+ <h2 class="text-3xl md:text-4xl font-bold text-white mb-6">
236
+ Ready to Transform Your Digital Experience?
237
+ </h2>
238
+ <p class="text-xl text-indigo-100 max-w-2xl mx-auto mb-10">
239
+ Join thousands of businesses who have already discovered the power of Digital Horizon.
240
+ </p>
241
+ <div class="flex flex-col sm:flex-row justify-center gap-4">
242
+ <button class="bg-white text-indigo-700 hover:bg-slate-100 px-8 py-4 rounded-lg font-bold text-lg transition transform hover:scale-105">
243
+ Get Started Now
244
+ <i data-feather="arrow-right" class="inline ml-2"></i>
245
+ </button>
246
+ <button class="bg-white/10 hover:bg-white/20 text-white px-8 py-4 rounded-lg font-bold text-lg transition border border-white/20 backdrop-blur-sm">
247
+ Request Demo
248
+ </button>
249
+ </div>
250
+ </div>
251
+ </section>
252
+
253
+ <!-- Footer -->
254
+ <footer class="bg-slate-900 text-slate-400 py-12">
255
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
256
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8">
257
+ <div>
258
+ <div class="flex items-center mb-4">
259
+ <i data-feather="compass" class="text-indigo-500 h-6 w-6"></i>
260
+ <span class="ml-2 font-bold text-xl text-white">DigitalHorizon</span>
261
+ </div>
262
+ <p class="mb-4">
263
+ Empowering businesses with cutting-edge digital solutions since 2023.
264
+ </p>
265
+ <div class="flex space-x-4">
266
+ <a href="#" class="text-slate-400 hover:text-white transition">
267
+ <i data-feather="twitter"></i>
268
+ </a>
269
+ <a href="#" class="text-slate-400 hover:text-white transition">
270
+ <i data-feather="linkedin"></i>
271
+ </a>
272
+ <a href="#" class="text-slate-400 hover:text-white transition">
273
+ <i data-feather="github"></i>
274
+ </a>
275
+ <a href="#" class="text-slate-400 hover:text-white transition">
276
+ <i data-feather="facebook"></i>
277
+ </a>
278
+ </div>
279
+ </div>
280
+
281
+ <div>
282
+ <h3 class="text-white font-semibold mb-4">Product</h3>
283
+ <ul class="space-y-2">
284
+ <li><a href="#" class="hover:text-white transition">Features</a></li>
285
+ <li><a href="#" class="hover:text-white transition">Pricing</a></li>
286
+ <li><a href="#" class="hover:text-white transition">Documentation</a></li>
287
+ <li><a href="#" class="hover:text-white transition">API</a></li>
288
+ </ul>
289
+ </div>
290
+
291
+ <div>
292
+ <h3 class="text-white font-semibold mb-4">Company</h3>
293
+ <ul class="space-y-2">
294
+ <li><a href="#" class="hover:text-white transition">About</a></li>
295
+ <li><a href="#" class="hover:text-white transition">Careers</a></li>
296
+ <li><a href="#" class="hover:text-white transition">Blog</a></li>
297
+ <li><a href="#" class="hover:text-white transition">Press</a></li>
298
+ </ul>
299
+ </div>
300
+
301
+ <div>
302
+ <h3 class="text-white font-semibold mb-4">Legal</h3>
303
+ <ul class="space-y-2">
304
+ <li><a href="#" class="hover:text-white transition">Privacy</a></li>
305
+ <li><a href="#" class="hover:text-white transition">Terms</a></li>
306
+ <li><a href="#" class="hover:text-white transition">Security</a></li>
307
+ <li><a href="#" class="hover:text-white transition">GDPR</a></li>
308
+ </ul>
309
+ </div>
310
+ </div>
311
+
312
+ <div class="border-t border-slate-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center">
313
+ <p>© 2023 Digital Horizon Explorer. All rights reserved.</p>
314
+ <div class="flex space-x-6 mt-4 md:mt-0">
315
+ <a href="#" class="text-slate-400 hover:text-white transition">Privacy Policy</a>
316
+ <a href="#" class="text-slate-400 hover:text-white transition">Terms of Service</a>
317
+ <a href="#" class="text-slate-400 hover:text-white transition">Cookie Policy</a>
318
+ </div>
319
+ </div>
320
+ </div>
321
+ </footer>
322
+
323
+ <script>
324
+ // Initialize Vanta.js
325
+ VANTA.NET({
326
+ el: "#vanta-bg",
327
+ mouseControls: true,
328
+ touchControls: true,
329
+ gyroControls: false,
330
+ minHeight: 200.00,
331
+ minWidth: 200.00,
332
+ scale: 1.00,
333
+ scaleMobile: 1.00,
334
+ color: 0x4f46e5,
335
+ backgroundColor: 0x0f172a,
336
+ points: 12.00,
337
+ maxDistance: 25.00,
338
+ spacing: 20.00
339
+ });
340
+
341
+ // Mobile menu toggle
342
+ document.getElementById('menu-btn').addEventListener('click', function() {
343
+ const menu = document.getElementById('mobile-menu');
344
+ menu.classList.toggle('hidden');
345
+ });
346
+
347
+ // Close mobile menu when clicking outside
348
+ document.addEventListener('click', function(event) {
349
+ const menuBtn = document.getElementById('menu-btn');
350
+ const menu = document.getElementById('mobile-menu');
351
+
352
+ if (!menu.contains(event.target) && event.target !== menuBtn) {
353
+ menu.classList.add('hidden');
354
+ }
355
+ });
356
+
357
+ // Initialize Feather Icons
358
+ document.addEventListener('DOMContentLoaded', function() {
359
+ feather.replace();
360
+
361
+ // Smooth scrolling for anchor links
362
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
363
+ anchor.addEventListener('click', function (e) {
364
+ e.preventDefault();
365
+
366
+ document.querySelector(this.getAttribute('href')).scrollIntoView({
367
+ behavior: 'smooth'
368
+ });
369
+ });
370
+ });
371
+ });
372
+ </script>
373
+ </body>
374
  </html>