bahgatbigo commited on
Commit
372ea35
·
verified ·
1 Parent(s): f20d674

404 This page could not be found. - Follow Up Deployment

Browse files
Files changed (1) hide show
  1. index.html +336 -595
index.html CHANGED
@@ -1,696 +1,437 @@
1
  <!DOCTYPE html>
2
- <html lang="en" class="scroll-smooth">
3
  <head>
4
  <meta charset="UTF-8">
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>Vibe Studio - Building the next generation of intuitive technology</title>
7
  <script src="https://cdn.tailwindcss.com"></script>
8
- <script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.2/gsap.min.js"></script>
9
- <script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.2/ScrollTrigger.min.js"></script>
10
- <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
11
  <style>
12
- :root {
13
- --primary-600: #7c3aed;
14
- --primary-700: #6d28d9;
15
- --accent-400: #f59e0b;
16
- --accent-500: #d97706;
17
- --neutral-800: #1f2937;
18
- --neutral-900: #111827;
19
  }
20
-
21
- body {
22
- font-family: 'Inter', sans-serif;
23
- background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 100%);
24
- }
25
-
26
- .font-mono {
27
- font-family: 'JetBrains Mono', monospace;
28
- }
29
-
30
- .hero-headline {
31
- opacity: 0;
32
- transform: translateY(30px);
33
- }
34
-
35
- .hero-subtext {
36
- opacity: 0;
37
- transform: translateY(30px);
38
- }
39
-
40
- .hero-cta {
41
- opacity: 0;
42
- transform: translateY(30px);
43
- }
44
-
45
- .fade-in {
46
- opacity: 0;
47
- transform: translateY(30px);
48
- }
49
-
50
- .slide-in {
51
- opacity: 0;
52
- transform: translateX(-30px);
53
- }
54
-
55
- .vibe-card {
56
- background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
57
- border: 1px solid rgba(124, 58, 237, 0.2);
58
- backdrop-filter: blur(10px);
59
- transition: all 0.3s ease;
60
- }
61
-
62
- .vibe-card:hover {
63
  transform: translateY(-5px);
64
- box-shadow: 0 20px 40px rgba(124, 58, 237, 0.3);
65
  }
66
-
67
- .portfolio-grid {
68
- display: grid;
69
- grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
70
- gap: 1.5rem;
71
- }
72
-
73
- .portfolio-item {
74
- background: rgba(17, 24, 39, 0.8);
75
- border: 1px solid rgba(124, 58, 237, 0.3);
76
- border-radius: 12px;
77
- overflow: hidden;
78
- transition: all 0.3s ease;
79
- }
80
-
81
- .portfolio-item:hover {
82
- transform: scale(1.02);
83
- box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
84
- }
85
-
86
- .gradient-text {
87
- background: linear-gradient(135deg, #7c3aed, #f59e0b);
88
- -webkit-background-clip: text;
89
- -webkit-text-fill-color: transparent;
90
- background-clip: text;
91
- }
92
-
93
- .btn-primary {
94
- background: linear-gradient(135deg, #7c3aed, #6d28d9);
95
- transition: all 0.3s ease;
96
- }
97
-
98
- .btn-primary:hover {
99
- background: linear-gradient(135deg, #6d28d9, #5b21b6);
100
- transform: translateY(-2px);
101
- box-shadow: 0 10px 25px rgba(124, 58, 237, 0.4);
102
- }
103
-
104
- .nav-link {
105
  position: relative;
106
- transition: color 0.3s ease;
107
  }
108
-
109
- .nav-link::after {
110
  content: '';
111
  position: absolute;
112
- bottom: -4px;
113
- left: 0;
114
- width: 0;
115
- height: 2px;
116
- background: linear-gradient(90deg, #7c3aed, #f59e0b);
117
- transition: width 0.3s ease;
118
- }
119
-
120
- .nav-link:hover::after {
121
  width: 100%;
 
 
 
 
 
 
 
122
  }
123
-
124
- .mobile-menu {
125
- transform: translateX(-100%);
126
- transition: transform 0.3s ease;
127
- }
128
-
129
- .mobile-menu.active {
130
- transform: translateX(0);
131
- }
132
-
133
- .typing-effect {
134
- border-right: 2px solid #7c3aed;
135
- animation: blink 1s infinite;
136
- }
137
-
138
- @keyframes blink {
139
- 0%, 50% { border-color: #7c3aed; }
140
- 51%, 100% { border-color: transparent; }
141
- }
142
-
143
- .process-step {
144
- position: relative;
145
- padding: 2rem;
146
- border-radius: 12px;
147
- background: rgba(17, 24, 39, 0.6);
148
- border: 1px solid rgba(124, 58, 237, 0.2);
149
- transition: all 0.3s ease;
150
  }
151
-
152
- .process-step:hover {
153
- transform: translateY(-10px);
154
- box-shadow: 0 15px 35px rgba(124, 58, 237, 0.3);
155
  }
156
-
157
- .process-step::before {
158
- content: attr(data-step);
159
- position: absolute;
160
- top: -10px;
161
- left: 20px;
162
- background: linear-gradient(135deg, #7c3aed, #f59e0b);
163
- color: white;
164
- padding: 0.5rem 1rem;
165
- border-radius: 20px;
166
- font-size: 0.875rem;
167
- font-weight: 600;
168
  }
169
  </style>
170
  </head>
171
- <body class="text-white">
172
  <!-- Navigation -->
173
- <nav class="fixed top-0 w-full z-50 bg-black/20 backdrop-blur-md border-b border-white/10">
174
  <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
175
- <div class="flex justify-between items-center h-16">
176
  <div class="flex items-center">
177
- <span class="text-2xl font-bold gradient-text">Vibe Studio</span>
 
 
 
 
 
 
 
 
 
 
 
178
  </div>
179
-
180
- <!-- Desktop Navigation -->
181
- <div class="hidden md:flex space-x-8">
182
- <a href="#home" class="nav-link text-gray-300 hover:text-white">Home</a>
183
- <a href="#thesis" class="nav-link text-gray-300 hover:text-white">Our Vibe</a>
184
- <a href="#portfolio" class="nav-link text-gray-300 hover:text-white">Portfolio</a>
185
- <a href="#careers" class="nav-link text-gray-300 hover:text-white">Join Us</a>
186
- <a href="#insights" class="nav-link text-gray-300 hover:text-white">Insights</a>
187
  </div>
188
-
189
- <!-- Mobile Menu Button -->
190
- <button id="mobile-menu-btn" class="md:hidden">
191
- <svg class="w-6 h-6 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
192
- <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16"></path>
193
- </svg>
194
- </button>
195
- </div>
196
- </div>
197
-
198
- <!-- Mobile Menu -->
199
- <div id="mobile-menu" class="mobile-menu fixed inset-0 bg-black/95 z-40 md:hidden">
200
- <div class="flex flex-col items-center justify-center h-full space-y-8">
201
- <a href="#home" class="text-2xl text-gray-300 hover:text-white">Home</a>
202
- <a href="#thesis" class="text-2xl text-gray-300 hover:text-white">Our Vibe</a>
203
- <a href="#portfolio" class="text-2xl text-gray-300 hover:text-white">Portfolio</a>
204
- <a href="#careers" class="text-2xl text-gray-300 hover:text-white">Join Us</a>
205
- <a href="#insights" class="text-2xl text-gray-300 hover:text-white">Insights</a>
206
  </div>
207
  </div>
208
  </nav>
209
 
210
  <!-- Hero Section -->
211
- <section id="home" class="min-h-screen flex items-center justify-center relative overflow-hidden">
212
- <!-- Background Elements -->
213
- <div class="absolute inset-0">
214
- <div class="absolute top-1/4 left-1/4 w-96 h-96 bg-purple-600/20 rounded-full blur-3xl animate-pulse"></div>
215
- <div class="absolute bottom-1/4 right-1/4 w-96 h-96 bg-amber-500/20 rounded-full blur-3xl animate-pulse delay-1000"></div>
216
- </div>
217
-
218
- <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center relative z-10">
219
- <h1 class="hero-headline text-5xl md:text-7xl font-bold mb-6">
220
- <span class="block">We don't just build startups,</span>
221
- <span class="gradient-text">we build vibes</span>
222
- </h1>
223
-
224
- <p class="hero-subtext text-xl md:text-2xl text-gray-300 mb-8 max-w-3xl mx-auto">
225
- Vibe Startup Studio: Where ideas meet execution with the right energy
226
- </p>
227
-
228
- <div class="hero-cta flex flex-col sm:flex-row gap-4 justify-center">
229
- <button class="btn-primary px-8 py-4 rounded-lg font-semibold text-white">
230
- Explore Our Vibe
231
- </button>
232
- <button class="border border-purple-600 text-purple-400 px-8 py-4 rounded-lg font-semibold hover:bg-purple-600/20 transition-all">
233
- View Portfolio
234
- </button>
235
- </div>
236
-
237
- <!-- Process Steps -->
238
- <div class="mt-20 grid md:grid-cols-3 gap-8 max-w-4xl mx-auto">
239
- <div class="process-step fade-in" data-step="01">
240
- <h3 class="text-xl font-bold mb-2">Ideate</h3>
241
- <p class="text-gray-400">Transform ideas into viable products with AI-powered validation</p>
242
- </div>
243
- <div class="process-step fade-in" data-step="02">
244
- <h3 class="text-xl font-bold mb-2">Build</h3>
245
- <p class="text-gray-400">Rapid development with cutting-edge AI tools and frameworks</p>
246
- </div>
247
- <div class="process-step fade-in" data-step="03">
248
- <h3 class="text-xl font-bold mb-2">Launch</h3>
249
- <p class="text-gray-400">Deploy, scale, and optimize for maximum impact</p>
250
  </div>
251
  </div>
252
  </div>
253
- </section>
254
 
255
- <!-- Our Vibe Section -->
256
- <section id="thesis" class="py-20 md:py-32">
257
- <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
258
- <div class="text-center mb-16">
259
- <h2 class="text-4xl md:text-5xl font-bold mb-6 fade-in">Our Vibe: The Philosophy</h2>
260
- <p class="text-xl text-gray-300 max-w-3xl mx-auto fade-in">
261
- We believe technology should be intuitive, human, and positively impactful
262
- </p>
263
- </div>
264
-
265
- <div class="grid md:grid-cols-2 gap-12 items-center">
266
- <div class="fade-in">
267
- <h3 class="text-3xl font-bold mb-6">The Future We're Building</h3>
268
- <p class="text-gray-300 mb-6 text-lg">
269
- At Vibe Studio, we're not just creating companies—we're crafting experiences that redefine how humans interact with technology. Our focus spans three revolutionary domains:
270
- </p>
271
-
272
- <div class="space-y-4">
273
- <div class="vibe-card p-6 rounded-lg">
274
- <h4 class="text-xl font-bold text-purple-400 mb-2">Future of Work</h4>
275
- <p class="text-gray-300">AI-powered tools that augment human creativity and productivity</p>
276
- </div>
277
-
278
- <div class="vibe-card p-6 rounded-lg">
279
- <h4 class="text-xl font-bold text-amber-400 mb-2">Digital Wellness</h4>
280
- <p class="text-gray-300">Mental health solutions powered by empathetic AI</p>
281
- </div>
282
-
283
- <div class="vibe-card p-6 rounded-lg">
284
- <h4 class="text-xl font-bold text-purple-400 mb-2">Creative AI</h4>
285
- <p class="text-gray-300">Tools that empower creators to push boundaries</p>
286
- </div>
287
- </div>
288
  </div>
289
-
290
- <div class="fade-in">
291
- <div class="relative">
292
- <div class="bg-gradient-to-br from-purple-600/20 to-amber-500/20 rounded-2xl p-8">
293
- <h4 class="text-2xl font-bold mb-4">Our Core Beliefs</h4>
294
- <ul class="space-y-4 text-gray-300">
295
- <li class="flex items-start">
296
- <span class="text-purple-400 mr-3">→</span>
297
- Technology should amplify human potential, not replace it
298
- </li>
299
- <li class="flex items-start">
300
- <span class="text-amber-400 mr-3"></span>
301
- Every product must have a soul and purpose
302
- </li>
303
- <li class="flex items-start">
304
- <span class="text-purple-400 mr-3">→</span>
305
- AI should be a creative partner, not just a tool
306
- </li>
307
- <li class="flex items-start">
308
- <span class="text-amber-400 mr-3">→</span>
309
- Build for the future, but stay grounded in human needs
310
- </li>
311
- </ul>
312
  </div>
 
313
  </div>
314
  </div>
315
  </div>
316
- </div>
317
- </section>
318
 
319
- <!-- Portfolio Section -->
320
- <section id="portfolio" class="py-20 md:py-32 bg-gray-900/50">
321
- <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
322
- <div class="text-center mb-16">
323
- <h2 class="text-4xl md:text-5xl font-bold mb-6 fade-in">Our Portfolio</h2>
324
- <p class="text-xl text-gray-300 max-w-3xl mx-auto fade-in">
325
- From concept to launch, these are the startups we've built with the right vibe
326
- </p>
327
- </div>
328
-
329
- <div class="portfolio-grid">
330
- <!-- Featured Projects -->
331
- <div class="portfolio-item fade-in">
332
- <div class="p-6">
333
- <div class="flex items-center justify-between mb-4">
334
- <h3 class="text-xl font-bold">3aqlmasr.com</h3>
335
- <span class="text-purple-400 text-sm">AI Platform</span>
336
- </div>
337
- <p class="text-gray-400 mb-4">AI-powered platform for Egyptian public figures and insights</p>
338
- <a href="https://3aqlmasr.com" class="text-purple-400 hover:text-purple-300">Explore →</a>
339
- </div>
340
  </div>
341
-
342
- <div class="portfolio-item fade-in">
343
- <div class="p-6">
344
- <div class="flex items-center justify-between mb-4">
345
- <h3 class="text-xl font-bold">7al.app</h3>
346
- <span class="text-amber-400 text-sm">Healthcare AI</span>
347
- </div>
348
- <p class="text-gray-400 mb-4">AI-driven medical diagnosis and health companion</p>
349
- <a href="https://7al.app" class="text-purple-400 hover:text-purple-300">Explore →</a>
350
  </div>
351
- </div>
352
-
353
- <div class="portfolio-item fade-in">
354
- <div class="p-6">
355
- <div class="flex items-center justify-between mb-4">
356
- <h3 class="text-xl font-bold">aigame.diy</h3>
357
- <span class="text-purple-400 text-sm">Game Dev</span>
358
  </div>
359
- <p class="text-gray-400 mb-4">AI tool to create personalized video games instantly</p>
360
- <a href="https://aigame.diy" class="text-purple-400 hover:text-purple-300">Explore →</a>
361
  </div>
362
  </div>
363
-
364
- <div class="portfolio-item fade-in">
365
- <div class="p-6">
366
- <div class="flex items-center justify-between mb-4">
367
- <h3 class="text-xl font-bold">bahgat.ai</h3>
368
- <span class="text-amber-400 text-sm">Personal AI</span>
369
- </div>
370
- <p class="text-gray-400 mb-4">Your personalized AI assistant by Bahgat</p>
371
- <a href="https://bahgat.ai" class="text-purple-400 hover:text-purple-300">Explore →</a>
372
- </div>
373
  </div>
374
-
375
- <div class="portfolio-item fade-in">
376
- <div class="p-6">
377
- <div class="flex items-center justify-between mb-4">
378
- <h3 class="text-xl font-bold">mo7amy.live</h3>
379
- <span class="text-purple-400 text-sm">Legal AI</span>
380
- </div>
381
- <p class="text-gray-400 mb-4">Live AI legal assistance in Arabic</p>
382
- <a href="https://mo7amy.live" class="text-purple-400 hover:text-purple-300">Explore →</a>
383
  </div>
384
- </div>
385
-
386
- <div class="portfolio-item fade-in">
387
- <div class="p-6">
388
- <div class="flex items-center justify-between mb-4">
389
- <h3 class="text-xl font-bold">bebsata.live</h3>
390
- <span class="text-amber-400 text-sm">Streaming</span>
391
  </div>
392
- <p class="text-gray-400 mb-4">AI-powered live streaming platform for simple content</p>
393
- <a href="https://bebsata.live" class="text-purple-400 hover:text-purple-300">Explore →</a>
394
  </div>
395
  </div>
396
  </div>
397
-
398
- <div class="text-center mt-12">
399
- <button class="btn-primary px-8 py-3 rounded-lg font-semibold">
400
- View All 50+ Projects
401
- </button>
402
- </div>
403
  </div>
404
- </section>
405
 
406
- <!-- Careers Section -->
407
- <section id="careers" class="py-20 md:py-32">
 
 
 
 
 
 
 
 
408
  <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
409
- <div class="text-center mb-16">
410
- <h2 class="text-4xl md:text-5xl font-bold mb-6 fade-in">Join Our Vibe</h2>
411
- <p class="text-xl text-gray-300 max-w-3xl mx-auto fade-in">
412
- We're not hiring employees—we're seeking co-creators of the future
 
 
413
  </p>
414
  </div>
415
-
416
- <div class="grid md:grid-cols-2 gap-12">
417
- <div class="fade-in">
418
- <h3 class="text-3xl font-bold mb-6">Founders in Residence Program</h3>
419
- <p class="text-gray-300 mb-6 text-lg">
420
- Join our 12-month program to build your startup with full support:
 
 
 
 
421
  </p>
422
-
423
- <ul class="space-y-3 text-gray-300">
424
- <li class="flex items-start">
425
- <span class="text-purple-400 mr-3">✓</span>
426
- Full funding and resources
427
- </li>
428
- <li class="flex items-start">
429
- <span class="text-purple-400 mr-3">✓</span>
430
- AI-powered development tools
431
- </li>
432
- <li class="flex items-start">
433
- <span class="text-purple-400 mr-3">✓</span>
434
- Access to our network of experts
435
- </li>
436
- <li class="flex items-start">
437
- <span class="text-purple-400 mr-3">✓</span>
438
- Equity partnership model
439
- </li>
440
- </ul>
441
-
442
- <button class="btn-primary px-6 py-3 rounded-lg font-semibold mt-6">
443
- Apply as Founder
444
- </button>
445
  </div>
446
-
447
- <div class="fade-in">
448
- <h3 class="text-3xl font-bold mb-6">Engineers & Designers</h3>
449
- <p class="text-gray-300 mb-6 text-lg">
450
- Shape the future with cutting-edge AI technology. We're looking for:
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
451
  </p>
452
-
453
- <div class="grid grid-cols-2 gap-4">
454
- <div class="vibe-card p-4 rounded-lg text-center">
455
- <h4 class="font-bold">AI Engineers</h4>
456
- <p class="text-sm text-gray-400">ML/LLM specialists</p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
457
  </div>
458
- <div class="vibe-card p-4 rounded-lg text-center">
459
- <h4 class="font-bold">Product Designers</h4>
460
- <p class="text-sm text-gray-400">AI-native experiences</p>
 
 
 
461
  </div>
462
- <div class="vibe-card p-4 rounded-lg text-center">
463
- <h4 class="font-bold">Full-stack Devs</h4>
464
- <p class="text-sm text-gray-400">Next.js & Python</p>
 
 
 
 
 
 
 
 
 
 
 
 
465
  </div>
466
- <div class="vibe-card p-4 rounded-lg text-center">
467
- <h4 class="font-bold">Growth Hackers</h4>
468
- <p class="text-sm text-gray-400">AI-first growth</p>
 
 
 
469
  </div>
 
 
 
470
  </div>
471
-
472
- <button class="border border-purple-600 text-purple-400 px-6 py-3 rounded-lg font-semibold hover:bg-purple-600/20 transition-all mt-6">
473
- View Open Positions
474
- </button>
475
  </div>
476
  </div>
477
  </div>
478
- </section>
479
 
480
- <!-- Insights Section -->
481
- <section id="insights" class="py-20 md:py-32 bg-gray-900/50">
482
- <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
483
- <div class="text-center mb-16">
484
- <h2 class="text-4xl md:text-5xl font-bold mb-6 fade-in">The Vibe Magazine</h2>
485
- <p class="text-xl text-gray-300 max-w-3xl mx-auto fade-in">
486
- Our digital publication exploring startup culture, tech trends, and founder stories
 
 
 
487
  </p>
488
  </div>
489
-
490
- <div class="grid md:grid-cols-3 gap-8">
491
- <article class="vibe-card p-6 rounded-lg fade-in">
492
- <img src="https://images.unsplash.com/photo-1677442136019-21780ecad995?w=400&h=200&fit=crop" alt="AI Future" class="w-full h-48 object-cover rounded-lg mb-4">
493
- <h3 class="text-xl font-bold mb-2">The Future of AI-First Startups</h3>
494
- <p class="text-gray-400 mb-4">How AI is reshaping the startup landscape and what it means for founders.</p>
495
- <a href="#" class="text-purple-400 hover:text-purple-300">Read More →</a>
496
- </article>
497
-
498
- <article class="vibe-card p-6 rounded-lg fade-in">
499
- <img src="https://images.unsplash.com/photo-1555949963-ff9fe0c870eb?w=400&h=200&fit=crop" alt="Digital Wellness" class="w-full h-48 object-cover rounded-lg mb-4">
500
- <h3 class="text-xl font-bold mb-2">Digital Wellness in the AI Age</h3>
501
- <p class="text-gray-400 mb-4">Exploring how AI can enhance rather than harm our mental wellbeing.</p>
502
- <a href="#" class="text-purple-400 hover:text-purple-300">Read More →</a>
503
- </article>
504
-
505
- <article class="vibe-card p-6 rounded-lg fade-in">
506
- <img src="https://images.unsplash.com/photo-1558346490-a72e53ae2d4f?w=400&h=200&fit=crop" alt="Creative AI" class="w-full h-48 object-cover rounded-lg mb-4">
507
- <h3 class="text-xl font-bold mb-2">Creative AI: Beyond Automation</h3>
508
- <p class="text-gray-400 mb-4">How AI is becoming a creative partner rather than just a tool.</p>
509
- <a href="#" class="text-purple-400 hover:text-purple-300">Read More →</a>
510
- </article>
511
- </div>
512
-
513
- <div class="text-center mt-12">
514
- <button class="btn-primary px-8 py-3 rounded-lg font-semibold">
515
- Subscribe to Vibe Report
516
- </button>
517
  </div>
518
  </div>
519
- </section>
520
 
521
  <!-- Footer -->
522
- <footer class="py-16 bg-black/50 border-t border-white/10">
523
- <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
524
- <div class="grid md:grid-cols-4 gap-8">
525
  <div>
526
- <h3 class="text-2xl font-bold gradient-text mb-4">Vibe Studio</h3>
527
- <p class="text-gray-400">Building the next generation of intuitive technology.</p>
 
 
 
 
 
528
  </div>
529
-
530
  <div>
531
- <h4 class="font-bold mb-4">Ventures</h4>
532
- <ul class="space-y-2 text-gray-400">
533
- <li><a href="#" class="hover:text-white">AI Platforms</a></li>
534
- <li><a href="#" class="hover:text-white">Healthcare AI</a></li>
535
- <li><a href="#" class="hover:text-white">Creative Tools</a></li>
536
- <li><a href="#" class="hover:text-white">E-commerce AI</a></li>
537
  </ul>
538
  </div>
539
-
540
  <div>
541
- <h4 class="font-bold mb-4">Company</h4>
542
- <ul class="space-y-2 text-gray-400">
543
- <li><a href="#" class="hover:text-white">Our Vibe</a></li>
544
- <li><a href="#" class="hover:text-white">Careers</a></li>
545
- <li><a href="#" class="hover:text-white">Blog</a></li>
546
- <li><a href="#" class="hover:text-white">Contact</a></li>
547
  </ul>
548
  </div>
549
-
550
  <div>
551
- <h4 class="font-bold mb-4">Connect</h4>
552
- <div class="flex space-x-4">
553
- <a href="#" class="text-gray-400 hover:text-white">Twitter</a>
554
- <a href="#" class="text-gray-400 hover:text-white">LinkedIn</a>
555
- <a href="#" class="text-gray-400 hover:text-white">GitHub</a>
 
 
 
 
 
 
 
 
 
556
  </div>
557
- <div class="mt-4">
558
- <h5 class="font-semibold text-sm mb-2">Domain Setup</h5>
559
- <p class="text-xs text-gray-500">For Namecheap domains:</p>
560
- <ol class="text-xs text-gray-400 space-y-1 mt-1">
561
- <li>1. Log in to Namecheap account</li>
562
- <li>2. Go to Domain List → Manage</li>
563
- <li>3. Under Nameservers select "Custom DNS"</li>
564
- <li>4. Enter your hosting provider's nameservers</li>
565
- </ol>
566
  </div>
567
  </div>
568
  </div>
569
-
570
- <div class="mt-12 pt-8 border-t border-white/10 text-center text-gray-400">
571
- <p>&copy; 2024 Vibe Studio. Building the future, one vibe at a time.</p>
 
 
 
 
 
 
572
  </div>
573
  </div>
574
  </footer>
575
 
 
 
 
 
 
 
 
576
  <script>
577
- // Mobile Menu Toggle
578
- const mobileMenuBtn = document.getElementById('mobile-menu-btn');
579
- const mobileMenu = document.getElementById('mobile-menu');
580
-
581
- mobileMenuBtn.addEventListener('click', () => {
582
- mobileMenu.classList.toggle('active');
583
- });
584
-
585
- // Close mobile menu when clicking a link
586
- mobileMenu.querySelectorAll('a').forEach(link => {
587
- link.addEventListener('click', () => {
588
- mobileMenu.classList.remove('active');
589
- });
590
- });
591
-
592
- // Smooth scrolling for navigation links
593
- document.querySelectorAll('a[href^="#"]').forEach(anchor => {
594
- anchor.addEventListener('click', function (e) {
595
- e.preventDefault();
596
- const target = document.querySelector(this.getAttribute('href'));
597
- if (target) {
598
- target.scrollIntoView({
599
- behavior: 'smooth',
600
- block: 'start'
601
- });
602
- }
603
- });
604
- });
605
-
606
- // GSAP Animations
607
- if (typeof gsap !== 'undefined') {
608
- gsap.registerPlugin(ScrollTrigger);
609
 
610
- // Hero animations
611
- gsap.timeline()
612
- .to('.hero-headline', { opacity: 1, y: 0, duration: 1, ease: "power2.out" })
613
- .to('.hero-subtext', { opacity: 1, y: 0, duration: 1, ease: "power2.out" }, "-=0.5")
614
- .to('.hero-cta', { opacity: 1, y: 0, duration: 1, ease: "power2.out" }, "-=0.5");
615
-
616
- // Scroll-triggered animations
617
- gsap.utils.toArray('.fade-in').forEach(element => {
618
- gsap.fromTo(element, {
619
- opacity: 0,
620
- y: 30
621
- }, {
622
- opacity: 1,
623
- y: 0,
624
- duration: 1,
625
- ease: "power2.out",
626
- scrollTrigger: {
627
- trigger: element,
628
- start: "top 95%",
629
- toggleActions: "play none none reverse"
630
  }
631
  });
632
- });
633
 
634
- gsap.utils.toArray('.slide-in').forEach(element => {
635
- gsap.fromTo(element, {
636
- opacity: 0,
637
- x: -30
638
- }, {
639
- opacity: 1,
640
- x: 0,
641
- duration: 1,
642
- ease: "power2.out",
643
- scrollTrigger: {
644
- trigger: element,
645
- start: "top 95%",
646
- toggleActions: "play none none reverse"
647
- }
648
- });
649
  });
650
- }
651
-
652
- // Typing effect
653
- const typingElement = document.getElementById('typing');
654
- const words = ['vibes', 'dreams', 'futures', 'realities'];
655
- let wordIndex = 0;
656
- let charIndex = 0;
657
- let isDeleting = false;
658
-
659
- function typeWriter() {
660
- const currentWord = words[wordIndex];
661
-
662
- if (isDeleting) {
663
- typingElement.textContent = currentWord.substring(0, charIndex - 1);
664
- charIndex--;
665
- } else {
666
- typingElement.textContent = currentWord.substring(0, charIndex + 1);
667
- charIndex++;
668
- }
669
 
670
- if (!isDeleting && charIndex === currentWord.length) {
671
- setTimeout(() => isDeleting = true, 2000);
672
- } else if (isDeleting && charIndex === 0) {
673
- isDeleting = false;
674
- wordIndex = (wordIndex + 1) % words.length;
675
- }
676
-
677
- setTimeout(typeWriter, isDeleting ? 100 : 150);
678
- }
679
-
680
- typeWriter();
681
-
682
- // Portfolio filtering functionality (enhanced)
683
- const portfolioItems = document.querySelectorAll('.portfolio-item');
684
-
685
- // Add hover effects
686
- portfolioItems.forEach(item => {
687
- item.addEventListener('mouseenter', () => {
688
- item.style.transform = 'translateY(-10px) scale(1.02)';
689
- });
690
-
691
- item.addEventListener('mouseleave', () => {
692
- item.style.transform = 'translateY(0) scale(1)';
693
- });
694
  });
695
  </script>
696
  <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=bahgatbigo/vibes" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
 
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>Idea.startup | Marketplace for Startup Ideas</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
+ .gradient-bg {
11
+ background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
 
 
 
 
 
12
  }
13
+ .idea-card:hover {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  transform: translateY(-5px);
15
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
16
  }
17
+ .animated-underline {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
18
  position: relative;
19
+ display: inline-block;
20
  }
21
+ .animated-underline::after {
 
22
  content: '';
23
  position: absolute;
 
 
 
 
 
 
 
 
 
24
  width: 100%;
25
+ transform: scaleX(0);
26
+ height: 2px;
27
+ bottom: 0;
28
+ left: 0;
29
+ background-color: #667eea;
30
+ transform-origin: bottom right;
31
+ transition: transform 0.25s ease-out;
32
  }
33
+ .animated-underline:hover::after {
34
+ transform: scaleX(1);
35
+ transform-origin: bottom left;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
36
  }
37
+ .floating {
38
+ animation: floating 3s ease-in-out infinite;
 
 
39
  }
40
+ @keyframes floating {
41
+ 0% { transform: translateY(0px); }
42
+ 50% { transform: translateY(-15px); }
43
+ 100% { transform: translateY(0px); }
 
 
 
 
 
 
 
 
44
  }
45
  </style>
46
  </head>
47
+ <body class="font-sans antialiased text-gray-800">
48
  <!-- Navigation -->
49
+ <nav class="bg-white shadow-lg sticky top-0 z-50">
50
  <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
51
+ <div class="flex justify-between h-16">
52
  <div class="flex items-center">
53
+ <div class="flex-shrink-0 flex items-center">
54
+ <i class="fas fa-lightbulb text-indigo-600 text-2xl mr-2"></i>
55
+ <span class="text-xl font-bold text-indigo-600">Idea.startup</span>
56
+ </div>
57
+ <div class="hidden md:ml-10 md:flex md:space-x-8">
58
+ <a href="/discover" class="text-indigo-600 inline-flex items-center px-1 pt-1 border-b-2 border-indigo-500 text-sm font-medium">Discover</a>
59
+ <a href="/submit-idea" 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">Sell Idea</a>
60
+ <a href="/invest" 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">Invest</a>
61
+ <a href="/dashboard" 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">Dashboard</a>
62
+ <a href="/about" 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">About</a>
63
+ <a href="/contact" 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">Contact</a>
64
+ </div>
65
  </div>
66
+ <div class="hidden md:ml-6 md:flex md:items-center">
67
+ <button class="bg-indigo-600 hover:bg-indigo-700 text-white px-4 py-2 rounded-md text-sm font-medium">Sign In</button>
68
+ </div>
69
+ <div class="-mr-2 flex items-center md:hidden">
70
+ <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">
71
+ <span class="sr-only">Open main menu</span>
72
+ <i class="fas fa-bars"></i>
73
+ </button>
74
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
75
  </div>
76
  </div>
77
  </nav>
78
 
79
  <!-- Hero Section -->
80
+ <div class="gradient-bg text-white">
81
+ <div class="max-w-7xl mx-auto py-16 px-4 sm:py-24 sm:px-6 lg:px-8">
82
+ <div class="text-center">
83
+ <h1 class="text-4xl font-extrabold tracking-tight sm:text-5xl md:text-6xl">
84
+ <span class="block">Turn Ideas Into</span>
85
+ <span class="block">Successful Startups</span>
86
+ </h1>
87
+ <p class="mt-3 max-w-md mx-auto text-base sm:text-lg md:mt-5 md:text-xl md:max-w-3xl">
88
+ Buy, sell, or invest in the next big startup idea. Join our marketplace of innovators and investors.
89
+ </p>
90
+ <div class="mt-5 max-w-md mx-auto sm:flex sm:justify-center md:mt-8">
91
+ <div class="rounded-md shadow">
92
+ <a href="/discover" class="w-full flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-md text-indigo-600 bg-white hover:bg-gray-50 md:py-4 md:text-lg md:px-10">
93
+ Explore Ideas
94
+ </a>
95
+ </div>
96
+ <div class="mt-3 rounded-md shadow sm:mt-0 sm:ml-3">
97
+ <a href="/submit-idea" 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-500 bg-opacity-60 hover:bg-opacity-70 md:py-4 md:text-lg md:px-10">
98
+ Sell Your Idea
99
+ </a>
100
+ </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
101
  </div>
102
  </div>
103
  </div>
104
+ </div>
105
 
106
+ <!-- Featured Ideas -->
107
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12">
108
+ <div class="text-center mb-12">
109
+ <h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl">
110
+ Featured <span class="text-indigo-600">Startup Ideas</span>
111
+ </h2>
112
+ <p class="mt-4 max-w-2xl text-xl text-gray-500 mx-auto">
113
+ Browse through our curated selection of high-potential startup ideas
114
+ </p>
115
+ </div>
116
+
117
+ <div class="grid grid-cols-1 gap-8 sm:grid-cols-2 lg:grid-cols-3">
118
+ <!-- Idea Card 1 -->
119
+ <div class="bg-white rounded-lg shadow-md overflow-hidden idea-card transition-all duration-300 ease-in-out">
120
+ <div class="relative h-48 overflow-hidden">
121
+ <img class="w-full h-full object-cover" src="https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="AI Startup">
122
+ <div class="absolute top-2 right-2 bg-indigo-100 text-indigo-800 text-xs font-semibold px-2.5 py-0.5 rounded-full">Tech</div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
123
  </div>
124
+ <div class="p-6">
125
+ <div class="flex items-center justify-between mb-2">
126
+ <h3 class="text-xl font-bold text-gray-900">AI-Powered Personal Assistant</h3>
127
+ <span class="text-indigo-600 font-bold">$25,000</span>
128
+ </div>
129
+ <p class="text-gray-600 mb-4">An AI assistant that learns your habits and preferences to automate daily tasks and decision making.</p>
130
+ <div class="flex items-center justify-between">
131
+ <div class="flex items-center">
132
+ <i class="fas fa-star text-yellow-400 mr-1"></i>
133
+ <span class="text-gray-700">4.8</span>
134
+ <span class="mx-2 text-gray-300">|</span>
135
+ <span class="text-gray-500">12 bids</span>
 
 
 
 
 
 
 
 
 
 
 
136
  </div>
137
+ <a href="/idea/ai-powered-assistant" class="text-indigo-600 hover:text-indigo-800 font-medium">View Details</a>
138
  </div>
139
  </div>
140
  </div>
 
 
141
 
142
+ <!-- Idea Card 2 -->
143
+ <div class="bg-white rounded-lg shadow-md overflow-hidden idea-card transition-all duration-300 ease-in-out">
144
+ <div class="relative h-48 overflow-hidden">
145
+ <img class="w-full h-full object-cover" src="https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Sustainability Startup">
146
+ <div class="absolute top-2 right-2 bg-green-100 text-green-800 text-xs font-semibold px-2.5 py-0.5 rounded-full">Sustainability</div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
147
  </div>
148
+ <div class="p-6">
149
+ <div class="flex items-center justify-between mb-2">
150
+ <h3 class="text-xl font-bold text-gray-900">Urban Vertical Farming Network</h3>
151
+ <span class="text-indigo-600 font-bold">$50,000</span>
 
 
 
 
 
152
  </div>
153
+ <p class="text-gray-600 mb-4">A network of vertical farms in urban areas providing fresh produce with minimal environmental impact.</p>
154
+ <div class="flex items-center justify-between">
155
+ <div class="flex items-center">
156
+ <i class="fas fa-star text-yellow-400 mr-1"></i>
157
+ <span class="text-gray-700">4.9</span>
158
+ <span class="mx-2 text-gray-300">|</span>
159
+ <span class="text-gray-500">24 bids</span>
160
  </div>
161
+ <button class="text-indigo-600 hover:text-indigo-800 font-medium">View Details</button>
 
162
  </div>
163
  </div>
164
+ </div>
165
+
166
+ <!-- Idea Card 3 -->
167
+ <div class="bg-white rounded-lg shadow-md overflow-hidden idea-card transition-all duration-300 ease-in-out">
168
+ <div class="relative h-48 overflow-hidden">
169
+ <img class="w-full h-full object-cover" src="https://images.unsplash.com/photo-1579621970563-ebec7560ff3e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1471&q=80" alt="Finance Startup">
170
+ <div class="absolute top-2 right-2 bg-blue-100 text-blue-800 text-xs font-semibold px-2.5 py-0.5 rounded-full">Finance</div>
 
 
 
171
  </div>
172
+ <div class="p-6">
173
+ <div class="flex items-center justify-between mb-2">
174
+ <h3 class="text-xl font-bold text-gray-900">Micro-Investment Platform</h3>
175
+ <span class="text-indigo-600 font-bold">$15,000</span>
 
 
 
 
 
176
  </div>
177
+ <p class="text-gray-600 mb-4">A platform that allows users to invest spare change from everyday purchases into diversified portfolios.</p>
178
+ <div class="flex items-center justify-between">
179
+ <div class="flex items-center">
180
+ <i class="fas fa-star text-yellow-400 mr-1"></i>
181
+ <span class="text-gray-700">4.7</span>
182
+ <span class="mx-2 text-gray-300">|</span>
183
+ <span class="text-gray-500">8 bids</span>
184
  </div>
185
+ <button class="text-indigo-600 hover:text-indigo-800 font-medium">View Details</button>
 
186
  </div>
187
  </div>
188
  </div>
 
 
 
 
 
 
189
  </div>
 
190
 
191
+ <div class="mt-10 text-center">
192
+ <a href="#" class="inline-flex items-center px-6 py-3 border border-transparent text-base font-medium rounded-md shadow-sm text-white bg-indigo-600 hover:bg-indigo-700">
193
+ Browse All Ideas
194
+ <i class="fas fa-arrow-right ml-2"></i>
195
+ </a>
196
+ </div>
197
+ </div>
198
+
199
+ <!-- How It Works -->
200
+ <div class="bg-gray-50 py-16">
201
  <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
202
+ <div class="text-center mb-12">
203
+ <h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl">
204
+ How <span class="text-indigo-600">Idea.startup</span> Works
205
+ </h2>
206
+ <p class="mt-4 max-w-2xl text-xl text-gray-500 mx-auto">
207
+ Simple steps to buy, sell, or invest in startup ideas
208
  </p>
209
  </div>
210
+
211
+ <div class="grid grid-cols-1 gap-8 sm:grid-cols-3">
212
+ <!-- Step 1 -->
213
+ <div class="bg-white p-6 rounded-lg shadow-sm text-center">
214
+ <div class="mx-auto flex items-center justify-center h-12 w-12 rounded-md bg-indigo-500 text-white mb-4">
215
+ <span class="text-xl font-bold">1</span>
216
+ </div>
217
+ <h3 class="text-lg font-medium text-gray-900 mb-2">Submit or Browse Ideas</h3>
218
+ <p class="text-gray-500">
219
+ Creators can submit their startup ideas with detailed business plans. Investors browse through vetted ideas.
220
  </p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
221
  </div>
222
+
223
+ <!-- Step 2 -->
224
+ <div class="bg-white p-6 rounded-lg shadow-sm text-center">
225
+ <div class="mx-auto flex items-center justify-center h-12 w-12 rounded-md bg-indigo-500 text-white mb-4">
226
+ <span class="text-xl font-bold">2</span>
227
+ </div>
228
+ <h3 class="text-lg font-medium text-gray-900 mb-2">Connect & Negotiate</h3>
229
+ <p class="text-gray-500">
230
+ Interested parties connect through our secure platform to discuss terms and negotiate deals.
231
+ </p>
232
+ </div>
233
+
234
+ <!-- Step 3 -->
235
+ <div class="bg-white p-6 rounded-lg shadow-sm text-center">
236
+ <div class="mx-auto flex items-center justify-center h-12 w-12 rounded-md bg-indigo-500 text-white mb-4">
237
+ <span class="text-xl font-bold">3</span>
238
+ </div>
239
+ <h3 class="text-lg font-medium text-gray-900 mb-2">Secure Transaction</h3>
240
+ <p class="text-gray-500">
241
+ Our escrow service ensures secure transactions when buying ideas or investing in startups.
242
  </p>
243
+ </div>
244
+ </div>
245
+ </div>
246
+ </div>
247
+
248
+ <!-- Testimonials -->
249
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-16">
250
+ <div class="text-center mb-12">
251
+ <h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl">
252
+ Success <span class="text-indigo-600">Stories</span>
253
+ </h2>
254
+ <p class="mt-4 max-w-2xl text-xl text-gray-500 mx-auto">
255
+ Hear from entrepreneurs and investors who found success through Idea.startup
256
+ </p>
257
+ </div>
258
+
259
+ <div class="grid grid-cols-1 gap-8 md:grid-cols-2">
260
+ <!-- Testimonial 1 -->
261
+ <div class="bg-white p-6 rounded-lg shadow-sm">
262
+ <div class="flex items-start">
263
+ <img class="h-12 w-12 rounded-full object-cover" src="https://randomuser.me/api/portraits/women/44.jpg" alt="Sarah Johnson">
264
+ <div class="ml-4">
265
+ <div class="flex items-center">
266
+ <h4 class="text-lg font-medium text-gray-900">Sarah Johnson</h4>
267
+ <span class="ml-2 text-xs text-gray-500">Founder, AI Assist</span>
268
  </div>
269
+ <div class="flex items-center mt-1">
270
+ <i class="fas fa-star text-yellow-400 text-sm"></i>
271
+ <i class="fas fa-star text-yellow-400 text-sm ml-1"></i>
272
+ <i class="fas fa-star text-yellow-400 text-sm ml-1"></i>
273
+ <i class="fas fa-star text-yellow-400 text-sm ml-1"></i>
274
+ <i class="fas fa-star text-yellow-400 text-sm ml-1"></i>
275
  </div>
276
+ <p class="mt-2 text-gray-600">
277
+ "I sold my AI assistant concept on Idea.startup for $25,000. The platform connected me with the perfect investor who had the resources to bring my vision to life. Today, AI Assist is valued at $5M."
278
+ </p>
279
+ </div>
280
+ </div>
281
+ </div>
282
+
283
+ <!-- Testimonial 2 -->
284
+ <div class="bg-white p-6 rounded-lg shadow-sm">
285
+ <div class="flex items-start">
286
+ <img class="h-12 w-12 rounded-full object-cover" src="https://randomuser.me/api/portraits/men/32.jpg" alt="Michael Chen">
287
+ <div class="ml-4">
288
+ <div class="flex items-center">
289
+ <h4 class="text-lg font-medium text-gray-900">Michael Chen</h4>
290
+ <span class="ml-2 text-xs text-gray-500">Investor</span>
291
  </div>
292
+ <div class="flex items-center mt-1">
293
+ <i class="fas fa-star text-yellow-400 text-sm"></i>
294
+ <i class="fas fa-star text-yellow-400 text-sm ml-1"></i>
295
+ <i class="fas fa-star text-yellow-400 text-sm ml-1"></i>
296
+ <i class="fas fa-star text-yellow-400 text-sm ml-1"></i>
297
+ <i class="fas fa-star text-yellow-400 text-sm ml-1"></i>
298
  </div>
299
+ <p class="mt-2 text-gray-600">
300
+ "As an angel investor, Idea.startup has been invaluable for discovering unique opportunities. I've invested in 3 ideas through the platform, all showing promising growth. The vetting process gives me confidence in the ideas I evaluate."
301
+ </p>
302
  </div>
 
 
 
 
303
  </div>
304
  </div>
305
  </div>
306
+ </div>
307
 
308
+ <!-- CTA Section -->
309
+ <div class="gradient-bg text-white">
310
+ <div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:py-16 lg:px-8 lg:flex lg:items-center lg:justify-between">
311
+ <div class="lg:w-1/2">
312
+ <h2 class="text-3xl font-extrabold tracking-tight sm:text-4xl">
313
+ <span class="block">Ready to dive in?</span>
314
+ <span class="block">Start exploring ideas today.</span>
315
+ </h2>
316
+ <p class="mt-3 max-w-3xl text-lg">
317
+ Join thousands of entrepreneurs and investors in our growing community.
318
  </p>
319
  </div>
320
+ <div class="mt-8 flex lg:mt-0 lg:flex-shrink-0">
321
+ <div class="inline-flex rounded-md shadow">
322
+ <a href="/signup" class="inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-medium rounded-md text-indigo-600 bg-white hover:bg-indigo-50">
323
+ Get Started
324
+ </a>
325
+ </div>
326
+ <div class="ml-3 inline-flex rounded-md shadow">
327
+ <a href="/about" class="inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-medium rounded-md text-white bg-indigo-600 bg-opacity-60 hover:bg-opacity-70">
328
+ Learn More
329
+ </a>
330
+ </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
331
  </div>
332
  </div>
333
+ </div>
334
 
335
  <!-- Footer -->
336
+ <footer class="bg-gray-800 text-white">
337
+ <div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:px-8">
338
+ <div class="grid grid-cols-2 md:grid-cols-4 gap-8">
339
  <div>
340
+ <h3 class="text-sm font-semibold text-gray-300 tracking-wider uppercase">Marketplace</h3>
341
+ <ul class="mt-4 space-y-4">
342
+ <li><a href="#" class="text-base text-gray-400 hover:text-white animated-underline">All Ideas</a></li>
343
+ <li><a href="#" class="text-base text-gray-400 hover:text-white animated-underline">Trending</a></li>
344
+ <li><a href="#" class="text-base text-gray-400 hover:text-white animated-underline">Newest</a></li>
345
+ <li><a href="#" class="text-base text-gray-400 hover:text-white animated-underline">Categories</a></li>
346
+ </ul>
347
  </div>
 
348
  <div>
349
+ <h3 class="text-sm font-semibold text-gray-300 tracking-wider uppercase">Resources</h3>
350
+ <ul class="mt-4 space-y-4">
351
+ <li><a href="#" class="text-base text-gray-400 hover:text-white animated-underline">Blog</a></li>
352
+ <li><a href="#" class="text-base text-gray-400 hover:text-white animated-underline">Guides</a></li>
353
+ <li><a href="#" class="text-base text-gray-400 hover:text-white animated-underline">Webinars</a></li>
354
+ <li><a href="#" class="text-base text-gray-400 hover:text-white animated-underline">Startup Tools</a></li>
355
  </ul>
356
  </div>
 
357
  <div>
358
+ <h3 class="text-sm font-semibold text-gray-300 tracking-wider uppercase">Company</h3>
359
+ <ul class="mt-4 space-y-4">
360
+ <li><a href="/about" class="text-base text-gray-400 hover:text-white animated-underline">About</a></li>
361
+ <li><a href="/careers" class="text-base text-gray-400 hover:text-white animated-underline">Careers</a></li>
362
+ <li><a href="/press" class="text-base text-gray-400 hover:text-white animated-underline">Press</a></li>
363
+ <li><a href="/contact" class="text-base text-gray-400 hover:text-white animated-underline">Contact</a></li>
364
  </ul>
365
  </div>
 
366
  <div>
367
+ <h3 class="text-sm font-semibold text-gray-300 tracking-wider uppercase">Connect</h3>
368
+ <div class="mt-4 flex space-x-6">
369
+ <a href="#" class="text-gray-400 hover:text-white">
370
+ <i class="fab fa-facebook-f"></i>
371
+ </a>
372
+ <a href="#" class="text-gray-400 hover:text-white">
373
+ <i class="fab fa-twitter"></i>
374
+ </a>
375
+ <a href="#" class="text-gray-400 hover:text-white">
376
+ <i class="fab fa-instagram"></i>
377
+ </a>
378
+ <a href="#" class="text-gray-400 hover:text-white">
379
+ <i class="fab fa-linkedin-in"></i>
380
+ </a>
381
  </div>
382
+ <div class="mt-6">
383
+ <h4 class="text-sm font-medium text-gray-300">Subscribe to our newsletter</h4>
384
+ <div class="mt-2 flex">
385
+ <input type="email" placeholder="Your email" class="px-4 py-2 rounded-l-md text-gray-800 w-full focus:outline-none">
386
+ <button class="bg-indigo-600 hover:bg-indigo-700 px-4 py-2 rounded-r-md">
387
+ <i class="fas fa-paper-plane"></i>
388
+ </button>
389
+ </div>
 
390
  </div>
391
  </div>
392
  </div>
393
+ <div class="mt-12 border-t border-gray-700 pt-8 flex flex-col md:flex-row justify-between">
394
+ <p class="text-base text-gray-400">
395
+ &copy; 2023 Idea.startup. All rights reserved.
396
+ </p>
397
+ <div class="mt-4 md:mt-0 flex space-x-6">
398
+ <a href="#" class="text-gray-400 hover:text-white">Privacy Policy</a>
399
+ <a href="#" class="text-gray-400 hover:text-white">Terms of Service</a>
400
+ <a href="#" class="text-gray-400 hover:text-white">Cookie Policy</a>
401
+ </div>
402
  </div>
403
  </div>
404
  </footer>
405
 
406
+ <!-- Floating action button -->
407
+ <div class="fixed bottom-6 right-6">
408
+ <button class="floating bg-indigo-600 hover:bg-indigo-700 text-white rounded-full p-4 shadow-lg focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500">
409
+ <i class="fas fa-comment-dots text-xl"></i>
410
+ </button>
411
+ </div>
412
+
413
  <script>
414
+ // Simple animation for idea cards on scroll
415
+ document.addEventListener('DOMContentLoaded', function() {
416
+ const ideaCards = document.querySelectorAll('.idea-card');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
417
 
418
+ const observer = new IntersectionObserver((entries) => {
419
+ entries.forEach(entry => {
420
+ if (entry.isIntersecting) {
421
+ entry.target.style.opacity = '1';
422
+ entry.target.style.transform = 'translateY(0)';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
423
  }
424
  });
425
+ }, { threshold: 0.1 });
426
 
427
+ ideaCards.forEach(card => {
428
+ card.style.opacity = '0';
429
+ card.style.transform = 'translateY(20px)';
430
+ card.style.transition = 'opacity 0.5s ease, transform 0.5s ease';
431
+ observer.observe(card);
 
 
 
 
 
 
 
 
 
 
432
  });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
433
 
434
+ // Mobile menu toggle would go here
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
435
  });
436
  </script>
437
  <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=bahgatbigo/vibes" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>