Ar4ikov commited on
Commit
4a3309e
·
verified ·
1 Parent(s): b7f6250

Добавь темную тему и возможность ее переключения. И эффекта liquid glass как у Apple добавь.

Browse files
Files changed (2) hide show
  1. README.md +9 -5
  2. index.html +527 -18
README.md CHANGED
@@ -1,10 +1,14 @@
1
  ---
2
- title: Undefined
3
- emoji: 📚
4
- colorFrom: yellow
5
- colorTo: green
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: undefined
3
+ colorFrom: red
4
+ colorTo: pink
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).
14
+
index.html CHANGED
@@ -1,19 +1,528 @@
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>SkyScribe - Cloud-Powered Productivity Suite</title>
7
+ <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
10
+ <script src="https://unpkg.com/feather-icons"></script>
11
+ <script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.globe.min.js"></script>
12
+ <script>
13
+ tailwind.config = {
14
+ theme: {
15
+ extend: {
16
+ colors: {
17
+ primary: {
18
+ 50: '#f0f9ff',
19
+ 100: '#e0f2fe',
20
+ 500: '#0ea5e9',
21
+ 600: '#0284c7',
22
+ 700: '#0369a1',
23
+ },
24
+ secondary: {
25
+ 50: '#eef2ff',
26
+ 100: '#e0e7ff',
27
+ 500: '#6366f1',
28
+ 600: '#4f46e5',
29
+ 700: '#4338ca',
30
+ }
31
+ }
32
+ }
33
+ }
34
+ }
35
+ </script>
36
+ <style>
37
+ .vanta-bg {
38
+ position: absolute;
39
+ top: 0;
40
+ left: 0;
41
+ width: 100%;
42
+ height: 100%;
43
+ z-index: -1;
44
+ }
45
+ .glass-effect {
46
+ backdrop-filter: blur(16px) saturate(180%);
47
+ -webkit-backdrop-filter: blur(16px) saturate(180%);
48
+ background-color: rgba(255, 255, 255, 0.75);
49
+ border-radius: 12px;
50
+ border: 1px solid rgba(209, 213, 219, 0.3);
51
+ }
52
+ .dark .glass-effect {
53
+ background-color: rgba(17, 24, 39, 0.75);
54
+ border: 1px solid rgba(255, 255, 255, 0.125);
55
+ }
56
+ .dark {
57
+ background-color: #111827;
58
+ color: #f3f4f6;
59
+ }
60
+ .dark nav {
61
+ background-color: #111827 !important;
62
+ }
63
+ .dark .bg-white {
64
+ background-color: #1f2937 !important;
65
+ }
66
+ .dark .text-gray-600, .dark .text-gray-400 {
67
+ color: #9ca3af !important;
68
+ }
69
+ .dark .text-gray-900 {
70
+ color: #f9fafb !important;
71
+ }
72
+ .dark .border-gray-200, .dark .border-gray-300 {
73
+ border-color: #374151 !important;
74
+ }
75
+ .feature-card:hover {
76
+ transform: translateY(-8px);
77
+ transition: all 0.3s ease;
78
+ }
79
+ .pricing-card {
80
+ transition: all 0.3s ease;
81
+ }
82
+ .pricing-card:hover {
83
+ transform: scale(1.05);
84
+ }
85
+ </style>
86
+ </head>
87
+ <body class="bg-white text-gray-800">
88
+ <!-- Navigation -->
89
+ <nav class="bg-white dark:bg-gray-900 shadow-sm fixed w-full z-50">
90
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
91
+ <div class="flex justify-between items-center h-16">
92
+ <div class="flex items-center">
93
+ <div class="flex-shrink-0 flex items-center">
94
+ <i data-feather="cloud" class="h-8 w-8 text-primary-500"></i>
95
+ <span class="ml-2 text-xl font-bold text-gray-900 dark:text-white">SkyScribe</span>
96
+ </div>
97
+ </div>
98
+ <div class="ml-4 flex items-center">
99
+ <button id="theme-toggle" class="text-gray-700 dark:text-gray-300 hover:text-primary-500 dark:hover:text-primary-400">
100
+ <i id="theme-icon" data-feather="moon"></i>
101
+ </button>
102
+ </div>
103
+ <div class="hidden md:block">
104
+ <div class="ml-10 flex items-baseline space-x-4">
105
+ <a href="#features" class="text-gray-600 hover:text-primary-500 px-3 py-2 rounded-md text-sm font-medium transition-colors">Features</a>
106
+ <a href="#pricing" class="text-gray-600 hover:text-primary-500 px-3 py-2 rounded-md text-sm font-medium transition-colors">Pricing</a>
107
+ <a href="#testimonials" class="text-gray-600 hover:text-primary-500 px-3 py-2 rounded-md text-sm font-medium transition-colors">Testimonials</a>
108
+ <a href="#" class="bg-primary-500 hover:bg-primary-600 text-white px-4 py-2 rounded-md text-sm font-medium transition-colors">Get Started</a>
109
+ </div>
110
+ </div>
111
+ <div class="md:hidden">
112
+ <button class="text-gray-600 hover:text-primary-500">
113
+ <i data-feather="menu"></i>
114
+ </button>
115
+ </div>
116
+ </div>
117
+ </div>
118
+ </nav>
119
+ <!-- Hero Section -->
120
+ <section class="relative min-h-screen flex items-center justify-center overflow-hidden dark:bg-gray-900">
121
+ <div id="vanta-bg" class="vanta-bg"></div>
122
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center relative z-10">
123
+ <div class="max-w-4xl mx-auto glass-effect p-8 md:p-12">
124
+ <h1 class="text-5xl md:text-7xl font-bold text-gray-900 dark:text-white mb-6">
125
+ Write. Collaborate.
126
+ <span class="text-primary-500">Soar.</span>
127
+ </h1>
128
+ <p class="text-xl md:text-2xl text-gray-600 mb-8 max-w-3xl mx-auto">
129
+ SkyScribe transforms how teams create content together. Real-time collaboration, AI-powered insights, and seamless cloud integration in one beautiful platform.
130
+ </p>
131
+ <div class="flex flex-col sm:flex-row gap-4 justify-center items-center">
132
+ <button class="bg-primary-500 hover:bg-primary-600 text-white px-8 py-4 rounded-lg font-semibold text-lg transition-colors shadow-lg flex items-center">
133
+ <i data-feather="play" class="mr-2"></i>
134
+ Start Free Trial
135
+ </button>
136
+ <button class="border-2 border-gray-300 hover:border-primary-500 text-gray-700 hover:text-primary-500 px-8 py-4 rounded-lg font-semibold text-lg transition-colors flex items-center">
137
+ <i data-feather="video" class="mr-2"></i>
138
+ Watch Demo
139
+ </button>
140
+ </div>
141
+ <div class="mt-12 grid grid-cols-2 md:grid-cols-4 gap-8 max-w-4xl mx-auto">
142
+ <div class="text-center">
143
+ <div class="text-3xl font-bold text-primary-500">10K+</div>
144
+ <div class="text-gray-600">Happy Teams</div>
145
+ </div>
146
+ <div class="text-center">
147
+ <div class="text-3xl font-bold text-primary-500">99.9%</div>
148
+ <div class="text-gray-600">Uptime</div>
149
+ </div>
150
+ <div class="text-center">
151
+ <div class="text-3xl font-bold text-primary-500">50+</div>
152
+ <div class="text-gray-600">Integrations</div>
153
+ </div>
154
+ <div class="text-center">
155
+ <div class="text-3xl font-bold text-primary-500">24/7</div>
156
+ <div class="text-gray-600">Support</div>
157
+ </div>
158
+ </div>
159
+ </div>
160
+ </div>
161
+ </section>
162
+ <!-- Features Section -->
163
+ <section id="features" class="py-20 bg-gray-50 dark:bg-gray-800">
164
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
165
+ <div class="text-center mb-16">
166
+ <h2 class="text-4xl md:text-5xl font-bold text-gray-900 mb-4">
167
+ Powerful Features for
168
+ <span class="text-primary-500">Modern Teams</span>
169
+ </h2>
170
+ <p class="text-xl text-gray-600 max-w-3xl mx-auto">
171
+ Everything you need to create amazing content together, with tools designed to boost productivity and foster collaboration.
172
+ </p>
173
+ </div>
174
+ <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
175
+ <!-- Feature 1 -->
176
+ <div class="feature-card bg-white rounded-2xl p-8 shadow-lg border border-gray-100">
177
+ <div class="w-16 h-16 bg-primary-50 rounded-xl flex items-center justify-center mb-6">
178
+ <i data-feather="edit-3" class="h-8 w-8 text-primary-500"></i>
179
+ </div>
180
+ <h3 class="text-2xl font-bold text-gray-900 mb-4">Real-time Collaboration</h3>
181
+ <p class="text-gray-600 mb-6">Work together seamlessly with live editing, comments, and version control that keeps everyone in sync.</p>
182
+ <ul class="space-y-2">
183
+ <li class="flex items-center text-gray-600">
184
+ <i data-feather="check" class="h-4 w-4 text-primary-500 mr-2"></i>
185
+ Live cursor presence
186
+ </li>
187
+ <li class="flex items-center text-gray-600">
188
+ <i data-feather="check" class="h-4 w-4 text-primary-500 mr-2"></i>
189
+ Instant updates
190
+ </li>
191
+ <li class="flex items-center text-gray-600">
192
+ <i data-feather="check" class="h-4 w-4 text-primary-500 mr-2"></i>
193
+ Comment threads
194
+ </li>
195
+ </ul>
196
+ </div>
197
+
198
+ <!-- Feature 2 -->
199
+ <div class="feature-card bg-white rounded-2xl p-8 shadow-lg border border-gray-100">
200
+ <div class="w-16 h-16 bg-secondary-50 rounded-xl flex items-center justify-center mb-6">
201
+ <i data-feather="zap" class="h-8 w-8 text-secondary-500"></i>
202
+ </div>
203
+ <h3 class="text-2xl font-bold text-gray-900 mb-4">AI-Powered Insights</h3>
204
+ <p class="text-gray-600 mb-6">Get smart suggestions, grammar corrections, and content optimization powered by advanced AI.</p>
205
+ <ul class="space-y-2">
206
+ <li class="flex items-center text-gray-600">
207
+ <i data-feather="check" class="h-4 w-4 text-secondary-500 mr-2"></i>
208
+ Tone analysis
209
+ </li>
210
+ <li class="flex items-center text-gray-600">
211
+ <i data-feather="check" class="h-4 w-4 text-secondary-500 mr-2"></i>
212
+ Content suggestions
213
+ </li>
214
+ <li class="flex items-center text-gray-600">
215
+ <i data-feather="check" class="h-4 w-4 text-secondary-500 mr-2"></i>
216
+ Grammar excellence
217
+ </li>
218
+ </ul>
219
+ </div>
220
+
221
+ <!-- Feature 3 -->
222
+ <div class="feature-card bg-white rounded-2xl p-8 shadow-lg border border-gray-100">
223
+ <div class="w-16 h-16 bg-primary-50 rounded-xl flex items-center justify-center mb-6">
224
+ <i data-feather="layers" class="h-8 w-8 text-primary-500"></i>
225
+ </div>
226
+ <h3 class="text-2xl font-bold text-gray-900 mb-4">Cloud Integration</h3>
227
+ <p class="text-gray-600 mb-6">Connect with your favorite tools and services for a unified workflow experience.</p>
228
+ <ul class="space-y-2">
229
+ <li class="flex items-center text-gray-600">
230
+ <i data-feather="check" class="h-4 w-4 text-primary-500 mr-2"></i>
231
+ Google Drive
232
+ </li>
233
+ <li class="flex items-center text-gray-600">
234
+ <i data-feather="check" class="h-4 w-4 text-primary-500 mr-2"></i>
235
+ Dropbox
236
+ </li>
237
+ <li class="flex items-center text-gray-600">
238
+ <i data-feather="check" class="h-4 w-4 text-primary-500 mr-2"></i>
239
+ Slack integration
240
+ </li>
241
+ </ul>
242
+ </div>
243
+ </div>
244
+ </div>
245
+ </section>
246
+ <!-- Pricing Section -->
247
+ <section id="pricing" class="py-20 bg-white dark:bg-gray-900">
248
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
249
+ <div class="text-center mb-16">
250
+ <h2 class="text-4xl md:text-5xl font-bold text-gray-900 mb-4">
251
+ Simple, Transparent
252
+ <span class="text-primary-500">Pricing</span>
253
+ </h2>
254
+ <p class="text-xl text-gray-600 max-w-3xl mx-auto">
255
+ Choose the plan that works best for your team. All plans include our core features with no hidden fees.
256
+ </p>
257
+ </div>
258
+ <div class="grid md:grid-cols-3 gap-8 max-w-5xl mx-auto">
259
+ <!-- Starter Plan -->
260
+ <div class="pricing-card bg-white dark:bg-gray-800 rounded-2xl p-8 border-2 border-gray-200 dark:border-gray-700">
261
+ <div class="text-center mb-8">
262
+ <h3 class="text-2xl font-bold text-gray-900 mb-2">Starter</h3>
263
+ <p class="text-gray-600">Perfect for small teams getting started</p>
264
+ </div>
265
+ <div class="text-center mb-8">
266
+ <span class="text-5xl font-bold text-gray-900">$12</span>
267
+ <span class="text-gray-600">/user/month</span>
268
+ </div>
269
+ <ul class="space-y-4 mb-8">
270
+ <li class="flex items-center text-gray-600">
271
+ <i data-feather="check" class="h-5 w-5 text-primary-500 mr-3"></i>
272
+ Up to 5 team members
273
+ </li>
274
+ <li class="flex items-center text-gray-600">
275
+ <i data-feather="check" class="h-5 w-5 text-primary-500 mr-3"></i>
276
+ 10GB storage per user
277
+ </li>
278
+ <li class="flex items-center text-gray-600">
279
+ <i data-feather="check" class="h-5 w-5 text-primary-500 mr-3"></i>
280
+ Basic collaboration
281
+ </li>
282
+ <li class="flex items-center text-gray-600">
283
+ <i data-feather="check" class="h-5 w-5 text-primary-500 mr-3"></i>
284
+ Email support
285
+ </li>
286
+ </ul>
287
+ <button class="w-full bg-gray-100 hover:bg-primary-500 hover:text-white text-gray-700 py-3 rounded-lg font-semibold transition-colors">
288
+ Get Started
289
+ </button>
290
+ </div>
291
+
292
+ <!-- Pro Plan -->
293
+ <div class="pricing-card bg-white dark:bg-gray-800 rounded-2xl p-8 border-2 border-primary-500 relative shadow-xl">
294
+ <div class="absolute top-0 left-1/2 transform -translate-x-1/2 -translate-y-1/2">
295
+ <span class="bg-primary-500 text-white px-4 py-1 rounded-full text-sm font-semibold">Most Popular</span>
296
+ </div>
297
+ <div class="text-center mb-8">
298
+ <h3 class="text-2xl font-bold text-gray-900 mb-2">Professional</h3>
299
+ <p class="text-gray-600">Ideal for growing teams and businesses</p>
300
+ </div>
301
+ <div class="text-center mb-8">
302
+ <span class="text-5xl font-bold text-gray-900">$24</span>
303
+ <span class="text-gray-600">/user/month</span>
304
+ </div>
305
+ <ul class="space-y-4 mb-8">
306
+ <li class="flex items-center text-gray-600">
307
+ <i data-feather="check" class="h-5 w-5 text-primary-500 mr-3"></i>
308
+ Unlimited team members
309
+ </li>
310
+ <li class="flex items-center text-gray-600">
311
+ <i data-feather="check" class="h-5 w-5 text-primary-500 mr-3"></i>
312
+ 100GB storage per user
313
+ </li>
314
+ <li class="flex items-center text-gray-600">
315
+ <i data-feather="check" class="h-5 w-5 text-primary-500 mr-3"></i>
316
+ Advanced collaboration
317
+ </li>
318
+ <li class="flex items-center text-gray-600">
319
+ <i data-feather="check" class="h-5 w-5 text-primary-500 mr-3"></i>
320
+ Priority support
321
+ </li>
322
+ <li class="flex items-center text-gray-600">
323
+ <i data-feather="check" class="h-5 w-5 text-primary-500 mr-3"></i>
324
+ AI-powered features
325
+ </li>
326
+ </ul>
327
+ <button class="w-full bg-primary-500 hover:bg-primary-600 text-white py-3 rounded-lg font-semibold transition-colors">
328
+ Get Started
329
+ </button>
330
+ </div>
331
+
332
+ <!-- Enterprise Plan -->
333
+ <div class="pricing-card bg-white rounded-2xl p-8 border-2 border-gray-200">
334
+ <div class="text-center mb-8">
335
+ <h3 class="text-2xl font-bold text-gray-900 mb-2">Enterprise</h3>
336
+ <p class="text-gray-600">For large organizations with custom needs</p>
337
+ </div>
338
+ <div class="text-center mb-8">
339
+ <span class="text-5xl font-bold text-gray-900">$45</span>
340
+ <span class="text-gray-600">/user/month</span>
341
+ </div>
342
+ <ul class="space-y-4 mb-8">
343
+ <li class="flex items-center text-gray-600">
344
+ <i data-feather="check" class="h-5 w-5 text-primary-500 mr-3"></i>
345
+ Unlimited everything
346
+ </li>
347
+ <li class="flex items-center text-gray-600">
348
+ <i data-feather="check" class="h-5 w-5 text-primary-500 mr-3"></i>
349
+ Custom storage solutions
350
+ </li>
351
+ <li class="flex items-center text-gray-600">
352
+ <i data-feather="check" class="h-5 w-5 text-primary-500 mr-3"></i>
353
+ Dedicated account manager
354
+ </li>
355
+ <li class="flex items-center text-gray-600">
356
+ <i data-feather="check" class="h-5 w-5 text-primary-500 mr-3"></i>
357
+ 24/7 phone support
358
+ </li>
359
+ <li class="flex items-center text-gray-600">
360
+ <i data-feather="check" class="h-5 w-5 text-primary-500 mr-3"></i>
361
+ Custom integrations
362
+ </li>
363
+ </ul>
364
+ <button class="w-full bg-gray-100 hover:bg-primary-500 hover:text-white text-gray-700 py-3 rounded-lg font-semibold transition-colors">
365
+ Contact Sales
366
+ </button>
367
+ </div>
368
+ </div>
369
+ </div>
370
+ </section>
371
+
372
+ <!-- CTA Section -->
373
+ <section class="py-20 bg-gradient-to-r from-primary-500 to-secondary-500">
374
+ <div class="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
375
+ <h2 class="text-4xl md:text-5xl font-bold text-white mb-6">
376
+ Ready to Transform Your Team's Workflow?
377
+ </h2>
378
+ <p class="text-xl text-primary-100 mb-8 max-w-2xl mx-auto">
379
+ Join thousands of teams who have already elevated their content creation process with SkyScribe.
380
+ </p>
381
+ <div class="flex flex-col sm:flex-row gap-4 justify-center items-center">
382
+ <button class="bg-white hover:bg-gray-100 text-primary-500 px-8 py-4 rounded-lg font-semibold text-lg transition-colors shadow-lg flex items-center">
383
+ <i data-feather="rocket" class="mr-2"></i>
384
+ Start Your Free Trial
385
+ </button>
386
+ <button class="border-2 border-white hover:bg-white hover:text-primary-500 text-white px-8 py-4 rounded-lg font-semibold text-lg transition-colors flex items-center">
387
+ <i data-feather="message-circle" class="mr-2"></i>
388
+ Schedule a Demo
389
+ </button>
390
+ </div>
391
+ <p class="text-primary-100 mt-6">No credit card required • 14-day free trial • Cancel anytime</p>
392
+ </div>
393
+ </section>
394
+
395
+ <!-- Footer -->
396
+ <footer class="bg-gray-900 text-white py-12">
397
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
398
+ <div class="grid md:grid-cols-4 gap-8">
399
+ <div>
400
+ <div class="flex items-center mb-4">
401
+ <i data-feather="cloud" class="h-6 w-6 text-primary-500"></i>
402
+ <span class="ml-2 text-xl font-bold">SkyScribe</span>
403
+ </div>
404
+ <p class="text-gray-400">Empowering teams to create amazing content together, faster and smarter.</p>
405
+ </div>
406
+ <div>
407
+ <h4 class="text-lg font-semibold mb-4">Product</h4>
408
+ <ul class="space-y-2 text-gray-400">
409
+ <li><a href="#" class="hover:text-white transition-colors">Features</a></li>
410
+ <li><a href="#" class="hover:text-white transition-colors">Pricing</a></li>
411
+ <li><a href="#" class="hover:text-white transition-colors">Integrations</a></li>
412
+ <li><a href="#" class="hover:text-white transition-colors">Updates</a></li>
413
+ </ul>
414
+ </div>
415
+ <div>
416
+ <h4 class="text-lg font-semibold mb-4">Company</h4>
417
+ <ul class="space-y-2 text-gray-400">
418
+ <li><a href="#" class="hover:text-white transition-colors">About</a></li>
419
+ <li><a href="#" class="hover:text-white transition-colors">Careers</a></li>
420
+ <li><a href="#" class="hover:text-white transition-colors">Blog</a></li>
421
+ <li><a href="#" class="hover:text-white transition-colors">Press</a></li>
422
+ </ul>
423
+ </div>
424
+ <div>
425
+ <h4 class="text-lg font-semibold mb-4">Support</h4>
426
+ <ul class="space-y-2 text-gray-400">
427
+ <li><a href="#" class="hover:text-white transition-colors">Help Center</a></li>
428
+ <li><a href="#" class="hover:text-white transition-colors">Contact</a></li>
429
+ <li><a href="#" class="hover:text-white transition-colors">Status</a></li>
430
+ <li><a href="#" class="hover:text-white transition-colors">API Docs</a></li>
431
+ </ul>
432
+ </div>
433
+ </div>
434
+ <div class="border-t border-gray-800 mt-8 pt-8 text-center text-gray-400">
435
+ <p>&copy; 2024 SkyScribe. All rights reserved.</p>
436
+ </div>
437
+ </div>
438
+ </footer>
439
+
440
+ <script>
441
+ // Initialize Vanta.js globe
442
+ VANTA.GLOBE({
443
+ el: "#vanta-bg",
444
+ mouseControls: true,
445
+ touchControls: true,
446
+ gyroControls: false,
447
+ minHeight: 200.00,
448
+ minWidth: 200.00,
449
+ scale: 1.00,
450
+ scaleMobile: 1.00,
451
+ color: 0x0ea5e9,
452
+ backgroundColor: 0xffffff,
453
+ size: 1.00
454
+ });
455
+ // Initialize Feather Icons
456
+ feather.replace();
457
+
458
+ // Theme switcher
459
+ const themeToggle = document.getElementById('theme-toggle');
460
+ const themeIcon = document.getElementById('theme-icon');
461
+ const prefersDarkScheme = window.matchMedia('(prefers-color-scheme: dark)');
462
+
463
+ // Check for saved theme preference or use system preference
464
+ const currentTheme = localStorage.getItem('theme');
465
+ if (currentTheme === 'dark' || (!currentTheme && prefersDarkScheme.matches)) {
466
+ document.documentElement.classList.add('dark');
467
+ themeIcon.setAttribute('data-feather', 'sun');
468
+ feather.replace();
469
+ } else {
470
+ document.documentElement.classList.remove('dark');
471
+ themeIcon.setAttribute('data-feather', 'moon');
472
+ feather.replace();
473
+ }
474
+
475
+ // Toggle theme
476
+ themeToggle.addEventListener('click', function() {
477
+ const html = document.documentElement;
478
+ if (html.classList.contains('dark')) {
479
+ html.classList.remove('dark');
480
+ localStorage.setItem('theme', 'light');
481
+ themeIcon.setAttribute('data-feather', 'moon');
482
+ } else {
483
+ html.classList.add('dark');
484
+ localStorage.setItem('theme', 'dark');
485
+ themeIcon.setAttribute('data-feather', 'sun');
486
+ }
487
+ feather.replace();
488
+ });
489
+
490
+ // Listen for system theme changes
491
+ prefersDarkScheme.addListener((e) => {
492
+ if (!localStorage.getItem('theme')) {
493
+ if (e.matches) {
494
+ document.documentElement.classList.add('dark');
495
+ themeIcon.setAttribute('data-feather', 'sun');
496
+ } else {
497
+ document.documentElement.classList.remove('dark');
498
+ themeIcon.setAttribute('data-feather', 'moon');
499
+ }
500
+ feather.replace();
501
+ }
502
+ });
503
+ // Smooth scrolling for navigation links
504
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
505
+ anchor.addEventListener('click', function (e) {
506
+ e.preventDefault();
507
+ const target = document.querySelector(this.getAttribute('href'));
508
+ if (target) {
509
+ target.scrollIntoView({
510
+ behavior: 'smooth',
511
+ block: 'start'
512
+ });
513
+ }
514
+ });
515
+ });
516
+
517
+ // Add scroll effect to navbar
518
+ window.addEventListener('scroll', function() {
519
+ const nav = document.querySelector('nav');
520
+ if (window.scrollY > 100) {
521
+ nav.classList.add('bg-white', 'shadow-lg');
522
+ } else {
523
+ nav.classList.remove('shadow-lg');
524
+ }
525
+ });
526
+ </script>
527
+ </body>
528
  </html>