Dawar23 commited on
Commit
3a12f55
·
verified ·
1 Parent(s): 8c99e45

Now just below the hero section add - why Vaskco and an one liner and the background should be white navy blue gradient - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +327 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Vaskco 1
3
- emoji: 👀
4
- colorFrom: pink
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: vaskco-1
3
+ emoji: 🐳
4
+ colorFrom: green
5
+ colorTo: yellow
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,327 @@
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>Vaskco - Hyperreal AI Influencers & Content</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="preconnect" href="https://fonts.googleapis.com">
9
+ <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
10
+ <link href="https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Manrope:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700&display=swap" rel="stylesheet">
11
+ <style>
12
+ body {
13
+ font-family: 'Manrope', sans-serif;
14
+ background-color: #000080;
15
+ color: white;
16
+ scroll-behavior: smooth;
17
+ }
18
+ h1, h2, h3, h4 {
19
+ font-family: 'DM Serif Display', serif;
20
+ }
21
+ .glass-card {
22
+ background: rgba(15, 37, 115, 0.6);
23
+ backdrop-filter: blur(10px);
24
+ -webkit-backdrop-filter: blur(10px);
25
+ border: 1px solid rgba(255, 255, 255, 0.1);
26
+ }
27
+ .hero-gradient {
28
+ background: linear-gradient(135deg, #000080 0%, #041856 100%);
29
+ }
30
+ .section-gradient {
31
+ background: linear-gradient(135deg, #0F2573 0%, #01082D 100%);
32
+ }
33
+ .fomo-gradient {
34
+ background: linear-gradient(135deg, #041856 0%, #0F2573 100%);
35
+ }
36
+ .btn-primary {
37
+ background-color: #ADE1FB;
38
+ color: #266CA9;
39
+ transition: all 0.3s ease;
40
+ }
41
+ .btn-primary:hover {
42
+ background-color: #266CA9;
43
+ color: #ADE1FB;
44
+ }
45
+ .modal-overlay {
46
+ background-color: rgba(1, 8, 45, 0.8);
47
+ }
48
+ .modal-content {
49
+ background: linear-gradient(135deg, #01082D 0%, #041856 100%);
50
+ backdrop-filter: blur(10px);
51
+ -webkit-backdrop-filter: blur(10px);
52
+ }
53
+ .fade-in {
54
+ animation: fadeIn 1s ease-in-out;
55
+ }
56
+ @keyframes fadeIn {
57
+ from { opacity: 0; }
58
+ to { opacity: 1; }
59
+ }
60
+ .text-rotator span {
61
+ opacity: 0;
62
+ position: absolute;
63
+ left: 0;
64
+ right: 0;
65
+ animation: rotateText 12s infinite;
66
+ }
67
+ .text-rotator span:nth-child(1) { animation-delay: 0s; }
68
+ .text-rotator span:nth-child(2) { animation-delay: 4s; }
69
+ .text-rotator span:nth-child(3) { animation-delay: 8s; }
70
+ @keyframes rotateText {
71
+ 0% { opacity: 0; transform: translateY(20px); }
72
+ 10% { opacity: 1; transform: translateY(0); }
73
+ 30% { opacity: 1; transform: translateY(0); }
74
+ 40% { opacity: 0; transform: translateY(-20px); }
75
+ 100% { opacity: 0; }
76
+ }
77
+ .parallax {
78
+ background-attachment: fixed;
79
+ background-position: center;
80
+ background-repeat: no-repeat;
81
+ background-size: cover;
82
+ }
83
+ .animate-gradient {
84
+ background-size: 400% 400%;
85
+ animation: gradient 15s ease infinite;
86
+ }
87
+ @keyframes gradient {
88
+ 0% { background-position: 0% 50%; }
89
+ 50% { background-position: 100% 50%; }
90
+ 100% { background-position: 0% 50%; }
91
+ }
92
+ </style>
93
+ </head>
94
+ <body class="antialiased">
95
+ <!-- Navigation -->
96
+ <nav class="fixed w-full z-50 bg-[#000080]/90 backdrop-blur-md">
97
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
98
+ <div class="flex justify-between h-20 items-center">
99
+ <div class="flex-shrink-0 flex items-center">
100
+ <span class="text-2xl font-sans font-medium text-white" style="font-family: 'Poppins', sans-serif">Vaskco</span>
101
+ </div>
102
+ <div class="hidden md:block">
103
+ <div class="ml-10 flex items-center space-x-8">
104
+ <a href="#features" class="text-white hover:text-[#ADE1FB] transition">Features</a>
105
+ <a href="#fomo" class="text-white hover:text-[#ADE1FB] transition">Why Vaskco</a>
106
+ <button onclick="openModal()" class="btn-primary px-6 py-2 rounded-full font-medium">Join Waitlist</button>
107
+ </div>
108
+ </div>
109
+ <div class="md:hidden">
110
+ <button id="mobile-menu-button" class="text-white focus:outline-none">
111
+ <svg class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
112
+ <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16"></path>
113
+ </svg>
114
+ </button>
115
+ </div>
116
+ </div>
117
+ </div>
118
+ <!-- Mobile menu -->
119
+ <div id="mobile-menu" class="md:hidden hidden bg-[#01082D]">
120
+ <div class="px-2 pt-2 pb-3 space-y-1 sm:px-3">
121
+ <a href="#features" class="block px-3 py-2 text-white hover:bg-[#0F2573] rounded-md">Features</a>
122
+ <a href="#fomo" class="block px-3 py-2 text-white hover:bg-[#0F2573] rounded-md">Why Vaskco</a>
123
+ <button onclick="openModal()" class="block w-full text-left px-3 py-2 btn-primary rounded-md">Join Waitlist</button>
124
+ </div>
125
+ </div>
126
+ </nav>
127
+
128
+ <!-- Hero Section -->
129
+ <section class="hero-gradient min-h-screen flex items-center justify-center relative overflow-hidden pt-20">
130
+ <div class="absolute inset-0 overflow-hidden">
131
+ <div class="absolute inset-0 bg-black/30 z-10"></div>
132
+ <div class="absolute inset-0 parallax" style="background-image: url('https://images.unsplash.com/photo-1529626455594-4ff0802cfb7e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80')"></div>
133
+ </div>
134
+
135
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 relative z-20 text-center py-32">
136
+ <div class="relative h-24 mb-8">
137
+ <div class="text-rotator">
138
+ <span class="text-4xl md:text-6xl font-serif font-normal">Meet the Future of Influence</span>
139
+ <span class="text-4xl md:text-6xl font-serif font-normal">Hyperreal AI Personas. Real Brand Impact.</span>
140
+ <span class="text-4xl md:text-6xl font-serif font-normal">Generate. Engage. Sell.</span>
141
+ </div>
142
+ </div>
143
+ <p class="text-xl md:text-2xl max-w-3xl mx-auto mb-12">Vaskco blends creativity and AI to help brands launch campaigns, content, and commerce—without hiring human creators.</p>
144
+ <button onclick="openModal()" class="btn-primary px-8 py-4 rounded-full text-lg font-medium">Join the Waitlist</button>
145
+ </div>
146
+ </section>
147
+
148
+ <!-- Why Vaskco Section -->
149
+ <section class="py-16 bg-gradient-to-b from-white to-[#000080]">
150
+ <div class="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
151
+ <h2 class="text-3xl md:text-5xl font-serif mb-6">Why Vaskco?</h2>
152
+ <p class="text-xl md:text-2xl text-[#01082D]">Hyperreal AI influencers that engage audiences and drive real results.</p>
153
+ </div>
154
+ </section>
155
+
156
+ <!-- What We Do Section -->
157
+ <section id="features" class="py-20 md:py-32 relative overflow-hidden">
158
+ <div class="absolute inset-0 bg-gradient-to-br from-white via-[#ADE1FB] to-[#266CA9] animate-gradient"></div>
159
+ <div class="absolute inset-0 bg-[#01082D]/80 backdrop-blur-sm"></div>
160
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
161
+ <h2 class="text-3xl md:text-5xl font-serif text-center mb-20">What We Do</h2>
162
+
163
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
164
+ <!-- Card 1 -->
165
+ <div class="relative rounded-2xl overflow-hidden h-96">
166
+ <div class="absolute inset-0 parallax" style="background-image: url('https://images.unsplash.com/photo-1618005182384-a83a8bd57fbe?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1964&q=80')"></div>
167
+ <div class="absolute inset-0 glass-card flex flex-col justify-end p-8">
168
+ <h3 class="text-2xl font-serif mb-4">Create Digital Influencers</h3>
169
+ <p class="opacity-90">Select from a curated library of AI personas. Hyperreal. Scalable. Customizable.</p>
170
+ </div>
171
+ </div>
172
+
173
+ <!-- Card 2 -->
174
+ <div class="relative rounded-2xl overflow-hidden h-96">
175
+ <div class="absolute inset-0 parallax" style="background-image: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80')"></div>
176
+ <div class="absolute inset-0 glass-card flex flex-col justify-end p-8">
177
+ <h3 class="text-2xl font-serif mb-4">Automate Campaigns</h3>
178
+ <p class="opacity-90">Generate stunning visuals, smart captions, livestream scripts, and podcast content—all from a product brief.</p>
179
+ </div>
180
+ </div>
181
+
182
+ <!-- Card 3 -->
183
+ <div class="relative rounded-2xl overflow-hidden h-96">
184
+ <div class="absolute inset-0 parallax" style="background-image: url('https://images.unsplash.com/photo-1639762681057-408e52192e55?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1932&q=80')"></div>
185
+ <div class="absolute inset-0 glass-card flex flex-col justify-end p-8">
186
+ <h3 class="text-2xl font-serif mb-4">AI Persona Marketplace</h3>
187
+ <p class="opacity-90">Soon, discover and license virtual influencers—just like hiring a creator.</p>
188
+ <span class="absolute top-4 right-4 bg-[#266CA9] text-[#ADE1FB] px-3 py-1 rounded-full text-xs">Coming Soon</span>
189
+ </div>
190
+ </div>
191
+ </div>
192
+ </div>
193
+ </section>
194
+
195
+ <!-- FOMO Section -->
196
+ <section id="fomo" class="fomo-gradient py-20 md:py-32 relative overflow-hidden">
197
+ <div class="absolute inset-0 opacity-20">
198
+ <div class="absolute inset-0 bg-gradient-to-r from-[#266CA9] to-[#ADE1FB] animate-pulse"></div>
199
+ </div>
200
+ <div class="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8 relative text-center">
201
+ <h2 class="text-3xl md:text-5xl font-serif mb-8">Get Ahead of the Curve</h2>
202
+ <p class="text-2xl mb-6">The next era of influence is here.</p>
203
+ <p class="text-lg opacity-90 mb-12">Thousands of brands still rely on slow, expensive human creators. Be among the first to launch with AI-driven influencer tech.</p>
204
+ <button onclick="openModal()" class="btn-primary px-8 py-4 rounded-full text-lg font-medium">Join the Waitlist</button>
205
+ </div>
206
+ </section>
207
+
208
+ <!-- Footer -->
209
+ <footer class="bg-[#000080] py-12">
210
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
211
+ <div class="flex flex-col md:flex-row justify-between items-center">
212
+ <div class="mb-6 md:mb-0">
213
+ <span class="text-2xl font-serif">Vaskco</span>
214
+ </div>
215
+ <div class="flex space-x-6 mb-6 md:mb-0">
216
+ <a href="#" class="text-white hover:text-[#ADE1FB] transition">Privacy Policy</a>
217
+ <a href="#" class="text-white hover:text-[#ADE1FB] transition">Terms</a>
218
+ </div>
219
+ <div class="text-sm opacity-70">
220
+ Crafted with AI, imagination, and a vision for tomorrow.
221
+ </div>
222
+ </div>
223
+ </div>
224
+ </footer>
225
+
226
+ <!-- Waitlist Modal -->
227
+ <div id="waitlist-modal" class="fixed inset-0 z-50 hidden items-center justify-center p-4 modal-overlay">
228
+ <div class="modal-content rounded-2xl max-w-md w-full p-8 relative">
229
+ <button onclick="closeModal()" class="absolute top-4 right-4 text-white hover:text-[#ADE1FB]">
230
+ <svg class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
231
+ <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12"></path>
232
+ </svg>
233
+ </button>
234
+
235
+ <h3 class="text-2xl font-serif mb-6">Join the Waitlist</h3>
236
+ <form id="waitlist-form" class="space-y-4">
237
+ <div>
238
+ <label for="name" class="block mb-2">Name</label>
239
+ <input type="text" id="name" name="name" required class="w-full bg-[#0F2573]/50 border border-[#266CA9] rounded-lg px-4 py-3 text-white focus:outline-none focus:ring-2 focus:ring-[#ADE1FB]">
240
+ </div>
241
+ <div>
242
+ <label for="email" class="block mb-2">Email</label>
243
+ <input type="email" id="email" name="email" required class="w-full bg-[#0F2573]/50 border border-[#266CA9] rounded-lg px-4 py-3 text-white focus:outline-none focus:ring-2 focus:ring-[#ADE1FB]">
244
+ </div>
245
+ <div>
246
+ <label for="referral" class="block mb-2">Where did you hear about us?</label>
247
+ <select id="referral" name="referral" class="w-full bg-[#0F2573]/50 border border-[#266CA9] rounded-lg px-4 py-3 text-white focus:outline-none focus:ring-2 focus:ring-[#ADE1FB]">
248
+ <option value="">Select an option</option>
249
+ <option value="Social Media">Social Media</option>
250
+ <option value="Friend">Friend</option>
251
+ <option value="Search Engine">Search Engine</option>
252
+ <option value="Press">Press</option>
253
+ <option value="Other">Other</option>
254
+ </select>
255
+ </div>
256
+ <button type="submit" class="w-full btn-primary py-3 rounded-lg font-medium">Submit</button>
257
+ </form>
258
+ </div>
259
+ </div>
260
+
261
+ <!-- Success Modal -->
262
+ <div id="success-modal" class="fixed inset-0 z-50 hidden items-center justify-center p-4 modal-overlay">
263
+ <div class="modal-content rounded-2xl max-w-md w-full p-8 text-center">
264
+ <svg class="h-16 w-16 text-[#ADE1FB] mx-auto mb-4" fill="none" viewBox="0 0 24 24" stroke="currentColor">
265
+ <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"></path>
266
+ </svg>
267
+ <h3 class="text-2xl font-serif mb-4">Thank You!</h3>
268
+ <p class="mb-6">You've been added to our waitlist. We'll be in touch soon.</p>
269
+ <button onclick="closeSuccessModal()" class="btn-primary px-6 py-2 rounded-full font-medium">Close</button>
270
+ </div>
271
+ </div>
272
+
273
+ <script>
274
+ // Mobile menu toggle
275
+ document.getElementById('mobile-menu-button').addEventListener('click', function() {
276
+ const menu = document.getElementById('mobile-menu');
277
+ menu.classList.toggle('hidden');
278
+ });
279
+
280
+ // Modal functions
281
+ function openModal() {
282
+ document.getElementById('waitlist-modal').classList.remove('hidden');
283
+ document.body.style.overflow = 'hidden';
284
+ }
285
+
286
+ function closeModal() {
287
+ document.getElementById('waitlist-modal').classList.add('hidden');
288
+ document.body.style.overflow = 'auto';
289
+ }
290
+
291
+ function closeSuccessModal() {
292
+ document.getElementById('success-modal').classList.add('hidden');
293
+ document.body.style.overflow = 'auto';
294
+ }
295
+
296
+ // Form submission
297
+ document.getElementById('waitlist-form').addEventListener('submit', function(e) {
298
+ e.preventDefault();
299
+
300
+ // Here you would typically send the form data to your backend
301
+ // For demo purposes, we'll just show the success modal
302
+ closeModal();
303
+ document.getElementById('success-modal').classList.remove('hidden');
304
+ document.getElementById('waitlist-form').reset();
305
+ });
306
+
307
+ // Scroll animations
308
+ document.addEventListener('DOMContentLoaded', function() {
309
+ const observerOptions = {
310
+ threshold: 0.1
311
+ };
312
+
313
+ const observer = new IntersectionObserver(function(entries) {
314
+ entries.forEach(entry => {
315
+ if (entry.isIntersecting) {
316
+ entry.target.classList.add('fade-in');
317
+ }
318
+ });
319
+ }, observerOptions);
320
+
321
+ document.querySelectorAll('section').forEach(section => {
322
+ observer.observe(section);
323
+ });
324
+ });
325
+ </script>
326
+ <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=Dawar23/vaskco-1" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
327
+ </html>