File size: 32,448 Bytes
ca71490 b987c09 ca71490 b987c09 ca71490 b987c09 ca71490 f2965fc ca71490 b987c09 ca71490 b987c09 ca71490 b987c09 ca71490 9c22c4a ca71490 06f1feb ca71490 b987c09 ca71490 b987c09 ca71490 b987c09 ca71490 b987c09 ca71490 b987c09 ca71490 b987c09 ca71490 b987c09 ca71490 d5636df ca71490 f6d3588 ca71490 e9cfbe6 5b1ac4d ca71490 f6d3588 ca71490 f6d3588 ca71490 dc66481 ca71490 59d0dbb ca71490 d5636df ca71490 d5636df ca71490 f6d3588 ca71490 9d5c6be ca71490 ab913f4 ca71490 5b1ac4d ca71490 b987c09 ca71490 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Q30 SaaS | Launching the Future of AI as a service</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
.gradient-bg {
background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #9333ea 100%);
}
.card-hover:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.animated-underline {
position: relative;
display: inline-block;
}
.animated-underline::after {
content: '';
position: absolute;
width: 100%;
height: 2px;
bottom: -2px;
left: 0;
background-color: #7c3aed;
transform: scaleX(0);
transition: transform 0.3s ease;
}
.animated-underline:hover::after {
transform: scaleX(1);
}
@keyframes float {
0% { transform: translateY(0px); }
50% { transform: translateY(-10px); }
100% { transform: translateY(0px); }
}
.floating {
animation: float 4s ease-in-out infinite;
}
.tab-content {
display: none;
}
.tab-content.active {
display: block;
animation: fadeIn 0.5s ease-in-out;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}
</style>
</head>
<body class="bg-gray-50 font-sans">
<!-- Header -->
<header class="gradient-bg text-white shadow-lg">
<div class="container mx-auto px-4 py-6">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="flex items-center mb-4 md:mb-0">
<i class="fas fa-rocket text-3xl mr-3"></i>
<h1 class="text-2xl md:text-3xl font-bold">Q30 SaaS (Quantum Leap Incubator)</h1>
</div>
<nav class="flex flex-wrap justify-center md:justify-end">
<a href="#about" class="px-3 py-2 animated-underline">About</a>
<a href="#programs" class="px-3 py-2 animated-underline">Programs</a>
<a href="#mentors" class="px-3 py-2 animated-underline">Mentors</a>
<a href="#portfolio" class="px-3 py-2 animated-underline">Portfolio</a>
<a href="#contact" class="px-3 py-2 animated-underline">Contact</a>
</nav>
</div>
</div>
</header>
<!-- Hero Section -->
<section class="gradient-bg text-white py-20">
<div class="container mx-auto px-4 flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0">
<h2 class="text-4xl md:text-5xl font-bold mb-6">Launch in 2029 and beyond</h2>
<p class="text-xl mb-8">We identify, nurture, and accelerate groundbreaking ideas in our private exclusive portfolio of companies into market-leading businesses.</p>
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
</div>
</div>
<div class="md:w-1/2 flex justify-center">
<div class="w-full h-64 bg-gradient-to-r from-purple-500 to-pink-500 rounded-xl shadow-2xl floating flex items-center justify-center">
<div class="grid grid-cols-3 gap-2 p-4">
<div class="w-12 h-12 bg-white opacity-30 rounded-lg"></div>
<div class="w-12 h-12 bg-white opacity-50 rounded-lg"></div>
<div class="w-12 h-12 bg-white opacity-30 rounded-lg"></div>
<div class="w-12 h-12 bg-white opacity-50 rounded-lg"></div>
<div class="w-12 h-12 bg-white opacity-70 rounded-lg"></div>
<div class="w-12 h-12 bg-white opacity-50 rounded-lg"></div>
</div>
</div>
</div>
</div>
</section>
<!-- Stats Section -->
<section class="bg-white py-16">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 text-center">
<div class="p-6 bg-gray-50 rounded-xl shadow-sm hover:shadow-md transition duration-300">
<h3 class="text-5xl font-bold text-purple-700 mb-3">+</h3>
<p class="text-gray-600">SaaS Launched</p>
</div>
<div class="p-6 bg-gray-50 rounded-xl shadow-sm hover:shadow-md transition duration-300">
<h3 class="text-5xl font-bold text-purple-700 mb-3">$M</h3>
<p class="text-gray-600">Total Funding Raised</p>
</div>
<div class="p-6 bg-gray-50 rounded-xl shadow-sm hover:shadow-md transition duration-300">
<h3 class="text-5xl font-bold text-purple-700 mb-3">%</h3>
<p class="text-gray-600">Success Rate</p>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-20 bg-gray-50">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4 text-gray-800">Our Mission</h2>
<div class="w-20 h-1 bg-purple-600 mx-auto"></div>
</div>
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0 md:pr-10">
<p class="text-lg text-gray-600 mb-6">At Q30 SaaS Incubator, we're dedicated to transforming bold ideas in Artificial Intelligence into scalable businesses that shape the future. Our Q30 cohort will focus on frontier technologies including quantum computing, AI ethics, and sustainable infrastructure.</p>
<p class="text-lg text-gray-600 mb-6">We provide more than just funding - our comprehensive program includes technical resources, strategic mentorship, and access to our global network of investors and partners.</p>
<p class="text-lg text-gray-600">Our alumni creates industry-leading companies across fintech, and deep tech sectors.</p>
</div>
<div class="md:w-1/2">
</div>
</div>
</div>
</section>
<!-- Programs Section -->
<section id="programs" class="py-20 bg-white">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4 text-gray-800">Our Programs</h2>
<div class="w-20 h-1 bg-purple-600 mx-auto"></div>
</div>
<div class="mb-8">
<div class="flex flex-wrap justify-center border-b border-gray-200">
<button class="tab-btn active px-6 py-3 font-medium text-white bg-purple-600 rounded-t-lg" data-tab="pre-accelerator">Pre-Accelerator</button>
<button class="tab-btn px-6 py-3 font-medium text-gray-600 hover:text-purple-700" data-tab="core">Core Program</button>
<button class="tab-btn px-6 py-3 font-medium text-gray-600 hover:text-purple-700" data-tab="growth">Growth Lab</button>
</div>
</div>
<div id="pre-accelerator" class="tab-content active">
<div class="grid md:grid-cols-3 gap-8">
<div class="bg-gray-50 p-8 rounded-xl shadow-sm card-hover transition duration-300">
<div class="text-purple-600 text-4xl mb-4">
<i class="fas fa-seedling"></i>
</div>
<h3 class="text-xl font-bold mb-4">Idea Validation</h3>
<p class="text-gray-600">1-week intensive program to test and refine your business concept with our team of AI experts.</p>
</div>
<div class="bg-gray-50 p-8 rounded-xl shadow-sm card-hover transition duration-300">
<div class="text-purple-600 text-4xl mb-4">
<i class="fas fa-flask"></i>
</div>
<h3 class="text-xl font-bold mb-4">Market Research</h3>
<p class="text-gray-600">Comprehensive analysis of your target market, competition, and potential customers.</p>
</div>
<div class="bg-gray-50 p-8 rounded-xl shadow-sm card-hover transition duration-300">
<div class="text-purple-600 text-4xl mb-4">
<i class="fas fa-chalkboard-teacher"></i>
</div>
<h3 class="text-xl font-bold mb-4">Mini Prototyping</h3>
<p class="text-gray-600">Rapid prototyping and user testing to validate core assumptions before full development.</p>
</div>
</div>
</div>
<div id="core" class="tab-content">
<div class="grid md:grid-cols-3 gap-8">
<div class="bg-gray-50 p-8 rounded-xl shadow-sm card-hover transition duration-300">
<div class="text-purple-600 text-4xl mb-4">
<i class="fas fa-rocket"></i>
</div>
<h3 class="text-xl font-bold mb-4">12-Week Annual Recurring Accelerator</h3>
<p class="text-gray-600">Intensive program focusing on product development, go-to-market strategy, and fundraising.</p>
</div>
<div class="bg-gray-50 p-8 rounded-xl shadow-sm card-hover transition duration-300">
<div class="text-purple-600 text-4xl mb-4">
<i class="fas fa-users"></i>
</div>
<h3 class="text-xl font-bold mb-4">Dedicated Mentorship</h3>
<p class="text-gray-600">Assigned AI mentors who are industry experts and successful entrepreneurs.</p>
</div>
<div class="bg-gray-50 p-8 rounded-xl shadow-sm card-hover transition duration-300">
<div class="text-purple-600 text-4xl mb-4">
<i class="fas fa-chart-line"></i>
</div>
<h3 class="text-xl font-bold mb-4">Seed Funding</h3>
<p class="text-gray-600">Initial dev for equity stake, with access to follow-on services.</p>
</div>
</div>
</div>
<div id="growth" class="tab-content">
<div class="grid md:grid-cols-3 gap-8">
<div class="bg-gray-50 p-8 rounded-xl shadow-sm card-hover transition duration-300">
<div class="text-purple-600 text-4xl mb-4">
<i class="fas fa-expand"></i>
</div>
<h3 class="text-xl font-bold mb-4">Scaling Support</h3>
<p class="text-gray-600">Ongoing strategic support for post-program SaaS showing strong traction.</p>
</div>
<div class="bg-gray-50 p-8 rounded-xl shadow-sm card-hover transition duration-300">
<div class="text-purple-600 text-4xl mb-4">
<i class="fas fa-handshake"></i>
</div>
<h3 class="text-xl font-bold mb-4">Corporate Partnerships</h3>
<p class="text-gray-600">Facilitated introductions to Asian marketplace companies for pilot programs and partnerships. </p>
</div>
<div class="bg-gray-50 p-8 rounded-xl shadow-sm card-hover transition duration-300">
<div class="text-purple-600 text-4xl mb-4">
<i class="fas fa-bullseye"></i>
</div>
<h3 class="text-xl font-bold mb-4">Prep</h3>
<p class="text-gray-600">Preparation and connections for your next major funding module.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Mentors Section -->
<section id="mentors" class="py-20 bg-gray-50">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4 text-gray-800">Private C-Suite Network</h2>
<p class="text-gray-600 mb-8">Access to our exclusive network of AI executives and industry leaders</p>
<div class="w-20 h-1 bg-purple-600 mx-auto"></div>
</div>
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-8">
<div class="bg-white rounded-xl overflow-hidden shadow-md card-hover transition duration-300">
<div class="p-6">
<p class="text-purple-600 mb-3">AI Ethics, Stanford</p>
<p class="text-gray-600">Former CTO at EthicalAI with 4 exits in AI space.</p>
</div>
</div>
<div class="bg-white rounded-xl overflow-hidden shadow-md card-hover transition duration-300">
<div class="p-6">
<p class="text-purple-600 mb-3">Quantum Computing</p>
<p class="text-gray-600">Founder of Qubit Labs, quantum computing pioneer.</p>
</div>
</div>
<div class="bg-white rounded-xl overflow-hidden shadow-md card-hover transition duration-300">
<div class="p-6">
<p class="text-purple-600 mb-3">Fintech Expert</p>
<p class="text-gray-600">Built 3 fintech unicorns, now angel investing.</p>
</div>
</div>
<div class="bg-white rounded-xl overflow-hidden shadow-md card-hover transition duration-300">
<div class="p-6">
<p class="text-purple-600 mb-3">Sustainable Tech</p>
<p class="text-gray-600">Led sustainable infrastructure projects in 12 countries.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Portfolio Section -->
<section id="portfolio" class="py-20 bg-white">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4 text-gray-800">Our Portfolio</h2>
<div class="w-20 h-1 bg-purple-600 mx-auto"></div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<div class="bg-gray-50 rounded-xl overflow-hidden shadow-md card-hover transition duration-300">
<div class="p-6">
<div class="flex items-center mb-4">
<div class="w-16 h-16 bg-purple-100 rounded-full flex items-center justify-center mr-4">
<span class="text-purple-600 text-2xl font-bold">Q</span>
</div>
<div>
<h3 class="font-bold text-xl">QMind</h3>
<p class="text-purple-600">Quantum AI</p>
</div>
</div>
<p class="text-gray-600 mb-4">Developed the first commercially viable quantum machine learning algorithms.</p>
<div class="flex justify-between items-center">
<span class="text-sm text-gray-500">2027 Cohort</span>
<span class="bg-green-100 text-green-800 text-xs px-2 py-1 rounded-full">Acquired</span>
</div>
</div>
</div>
<div class="bg-gray-50 rounded-xl overflow-hidden shadow-md card-hover transition duration-300">
<div class="p-6">
<div class="flex items-center mb-4">
<div class="w-16 h-16 bg-blue-100 rounded-full flex items-center justify-center mr-4">
<span class="text-blue-600 text-2xl font-bold">F</span>
</div>
<div>
<h3 class="font-bold text-xl">Fractional Reserve Mining Group</h3>
<p class="text-blue-600">All industries</p>
</div>
</div>
<p class="text-gray-600 mb-4">Blockchain Solutions.</p>
<div class="flex justify-between items-center">
<span class="text-sm text-gray-500">2026 Cohort</span>
<span class="bg-blue-100 text-blue-800 text-xs px-2 py-1 rounded-full">Dev</span>
</div>
</div>
</div>
<div class="bg-gray-50 rounded-xl overflow-hidden shadow-md card-hover transition duration-300">
<div class="p-6">
<div class="flex items-center mb-4">
<div class="w-16 h-16 bg-green-100 rounded-full flex items-center justify-center mr-4">
<span class="text-green-600 text-2xl font-bold">E</span>
</div>
<div>
<h3 class="font-bold text-xl">EcoGrid</h3>
<p class="text-green-600">Clean Energy</p>
</div>
</div>
<p class="text-gray-600 mb-4">AI-powered energy optimization for smart cities and buildings.</p>
<div class="flex justify-between items-center">
<span class="text-sm text-gray-500">2028 Cohort</span>
<span class="bg-yellow-100 text-yellow-800 text-xs px-2 py-1 rounded-full">Dev</span>
</div>
</div>
</div>
</div>
<div class="text-center mt-16">
</div>
</div>
</section>
<!-- FAQ Section -->
<section class="py-20 bg-gray-50">
<div class="container mx-auto px-4 max-w-4xl">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4 text-gray-800">Frequently Asked Questions</h2>
<div class="w-20 h-1 bg-purple-600 mx-auto"></div>
</div>
<div class="space-y-4">
<div class="border border-gray-200 rounded-xl overflow-hidden">
<button class="faq-btn w-full px-6 py-4 text-left flex justify-between items-center bg-white hover:bg-gray-50 transition duration-200">
<span class="font-medium text-gray-800">What makes Q30 SaaS different from other incubators?</span>
<i class="fas fa-chevron-down text-purple-600 transition-transform duration-300"></i>
</button>
<div class="faq-content hidden px-6 py-4 bg-gray-50">
<p class="text-gray-600">Our focus is exclusively on our pricate portfolio consisting of frontier technologies with exponential growth potential. We combine deep technical expertise with a unique founder development program that addresses both business and personal growth. Our mentor network includes artificial intelligence from niche fields that are typically hard to access.</p>
</div>
</div>
<div class="border border-gray-200 rounded-xl overflow-hidden">
<button class="faq-btn w-full px-6 py-4 text-left flex justify-between items-center bg-white hover:bg-gray-50 transition duration-200">
<span class="font-medium text-gray-800">What stage should my company be at to apply?</span>
<i class="fas fa-chevron-down text-purple-600 transition-transform duration-300"></i>
</button>
<div class="faq-content hidden px-6 py-4 bg-gray-50">
<p class="text-gray-600">We accept companies at various stages. For the pre-accelerator, we look for promising ideas within our portfolio with early validation. The core program requires at least a whitepaper with prototype in sight, while our growth lab is for companies with established product-market fit looking to scale. If in doubt, apply anyway and we'll guide you.</p>
</div>
</div>
<div class="border border-gray-200 rounded-xl overflow-hidden">
<button class="faq-btn w-full px-6 py-4 text-left flex justify-between items-center bg-white hover:bg-gray-50 transition duration-200">
<span class="font-medium text-gray-800">What equity stake does Quantum Leap take?</span>
<i class="fas fa-chevron-down text-purple-600 transition-transform duration-300"></i>
</button>
<div class="faq-content hidden px-6 py-4 bg-gray-50">
<p class="text-gray-600">Our standard model is 7% equity for the core program in exchange for $150,000 funding. The pre-accelerator is equity-free, while growth lab terms are negotiated case by case. We're founder-friendly and open to discussing alternative structures based on your specific situation.</p>
</div>
</div>
<div class="border border-gray-200 rounded-xl overflow-hidden">
<button class="faq-btn w-full px-6 py-4 text-left flex justify-between items-center bg-white hover:bg-gray-50 transition duration-200">
<span class="font-medium text-gray-800">Do I need to relocate for the program?</span>
<i class="fas fa-chevron-down text-purple-600 transition-transform duration-300"></i>
</button>
<div class="faq-content hidden px-6 py-4 bg-gray-50">
<p class="text-gray-600">While we have a physical hub in Silicon Beach (Los Angeles), all our programs are hybrid with remote options. We do require teams to attend key in-person (vid meeting) events (about 1 week per quarter) but otherwise allow flexible work arrangements. Our model is designed for global participation.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-20 bg-white">
<div class="container mx-auto px-4">
<div class="max-w-6xl mx-auto">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4 text-gray-800">Get In Touch</h2>
<div class="w-20 h-1 bg-purple-600 mx-auto"></div>
</div>
<div class="grid md:grid-cols-2 gap-12">
<div>
<h3 class="text-xl font-bold mb-6 text-gray-800">AI Response Module</h3>
<div class="bg-gray-50 p-6 rounded-lg">
<div class="flex items-start mb-4">
<div class="bg-purple-100 p-2 rounded-full mr-3">
<i class="fas fa-robot text-purple-600"></i>
</div>
<div>
<h4 class="font-medium text-gray-800">Quantum AI Assistant</h4>
<p class="text-gray-600">Ask our AI about the program</p>
</div>
</div>
<textarea class="w-full px-4 py-3 rounded-lg bg-white border border-gray-200 mb-3" placeholder="Type your question here..."></textarea>
<button class="w-full bg-purple-600 hover:bg-purple-700 text-white font-medium py-2 px-4 rounded-lg transition duration-300">
Get AI Response
</button>
</div>
</div>
<div>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-gray-300 py-12">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<h4 class="text-white font-bold text-lg mb-4">Q30 SaaS</h4>
<p class="mb-4">Launching the next generation of transformative businesses.</p>
<p>© 2025 Q30 SaaS. All rights reserved.</p>
</div>
<div>
<h4 class="text-white font-bold text-lg mb-4">Programs</h4>
<ul class="space-y-2">
<li><a href="#" class="hover:text-white transition duration-200">Pre-Accelerator</a></li>
<li><a href="#" class="hover:text-white transition duration-200">Core Program</a></li>
<li><a href="#" class="hover:text-white transition duration-200">Growth Lab</a></li>
<li><a href="#" class="hover:text-white transition duration-200">Founder Resources</a></li>
</ul>
</div>
<div>
<h4 class="text-white font-bold text-lg mb-4">Company</h4>
<ul class="space-y-2">
<li><a href="#" class="hover:text-white transition duration-200">About Us</a></li>
<li><a href="#" class="hover:text-white transition duration-200">Team</a></li>
<li><a href="#" class="hover:text-white transition duration-200">Mentors</a></li>
<li><a href="#" class="hover:text-white transition duration-200">Careers</a></li>
<li><a href="#" class="hover:text-white transition duration-200">Press</a></li>
</ul>
</div>
<div>
<h4 class="text-white font-bold text-lg mb-4">Legal</h4>
<ul class="space-y-2">
<li><a href="#" class="hover:text-white transition duration-200">Privacy Policy</a></li>
<li><a href="#" class="hover:text-white transition duration-200">Terms of Service</a></li>
<li><a href="#" class="hover:text-white transition duration-200">Cookie Policy</a></li>
</ul>
</div>
</div>
<div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center">
<p>Made with <i class="fas fa-heart text-pink-500"></i> for future entrepreneurs</p>
<div class="flex space-x-6 mt-4 md:mt-0">
<a href="#" class="hover:text-white transition duration-200"><i class="fab fa-twitter"></i></a>
<a href="#" class="hover:text-white transition duration-200"><i class="fab fa-linkedin-in"></i></a>
<a href="#" class="hover:text-white transition duration-200"><i class="fab fa-instagram"></i></a>
<a href="#" class="hover:text-white transition duration-200"><i class="fab fa-youtube"></i></a>
</div>
</div>
</div>
</footer>
<script>
// Tab functionality
const tabBtns = document.querySelectorAll('.tab-btn');
const tabContents = document.querySelectorAll('.tab-content');
tabBtns.forEach(btn => {
btn.addEventListener('click', () => {
// Remove active class from all buttons and contents
tabBtns.forEach(btn => btn.classList.remove('active', 'text-white', 'bg-purple-600'));
tabContents.forEach(content => content.classList.remove('active'));
// Add active class to clicked button and corresponding content
btn.classList.add('active', 'text-white', 'bg-purple-600');
const tabId = btn.getAttribute('data-tab');
document.getElementById(tabId).classList.add('active');
});
});
// FAQ functionality
const faqBtns = document.querySelectorAll('.faq-btn');
faqBtns.forEach(btn => {
btn.addEventListener('click', () => {
const faqContent = btn.nextElementSibling;
const icon = btn.querySelector('i');
// Toggle FAQ content
faqContent.classList.toggle('hidden');
// Rotate icon
if (faqContent.classList.contains('hidden')) {
icon.style.transform = 'rotate(0deg)';
btn.classList.remove('bg-gray-50');
} else {
icon.style.transform = 'rotate(180deg)';
btn.classList.add('bg-gray-50');
}
});
});
// Form submission
const applicationForm = document.getElementById('applicationForm');
if (applicationForm) {
applicationForm.addEventListener('submit', (e) => {
e.preventDefault();
// Here you would normally send the form data to your server
// For this example, we'll just show an alert
alert('Thank you for your application! We will review it and get back to you soon.');
applicationForm.reset();
});
}
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const targetId = this.getAttribute('href');
if (targetId === '#') return;
const targetElement = document.querySelector(targetId);
if (targetElement) {
window.scrollTo({
top: targetElement.offsetTop - 80,
behavior: 'smooth'
});
}
});
});
</script>
<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=privateuserh/q30saas-agentvbeta1-00" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |