File size: 34,517 Bytes
f6244df |
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 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Alpha-1 | AI-Powered App Builder</title>
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
darkMode: 'class',
theme: {
extend: {
colors: {
primary: '#8b5cf6',
secondary: '#ec4899',
dark: '#0f172a',
darker: '#020617',
}
}
}
}
</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, #00ff88 0%, #0066ff 50%, #00a1ff 100%);
}
body {
@apply bg-dark text-gray-200;
}
.testimonial-card {
transition: all 0.3s ease;
}
.testimonial-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.feature-icon {
width: 60px;
height: 60px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 16px;
margin-bottom: 20px;
}
.input-glow:focus {
box-shadow: 0 0 0 3px rgba(107, 115, 255, 0.3);
}
.scroll-container {
scrollbar-width: none;
}
.scroll-container::-webkit-scrollbar {
display: none;
}
</style>
</head>
<body class="font-sans antialiased text-gray-900">
<!-- Navigation -->
<nav class="bg-black border-b border-gray-800 sticky top-0 z-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-16">
<div class="flex items-center">
<div class="flex-shrink-0 flex items-center">
<span class="text-2xl font-bold bg-clip-text text-transparent bg-gradient-to-r from-primary to-secondary">Alpha-1</span>
</div>
</div>
<div class="hidden md:ml-6 md:flex md:items-center md:space-x-8">
<a href="#" class="text-gray-500 hover:text-gray-900 px-3 py-2 text-sm font-medium">Features</a>
<a href="#" class="text-gray-500 hover:text-gray-900 px-3 py-2 text-sm font-medium">Pricing</a>
<a href="#" class="text-gray-500 hover:text-gray-900 px-3 py-2 text-sm font-medium">Testimonials</a>
<a href="#" class="text-gray-500 hover:text-gray-900 px-3 py-2 text-sm font-medium">FAQ</a>
</div>
<div class="flex items-center">
<a href="#" class="ml-6 inline-flex items-center px-4 py-2 border border-transparent text-sm font-medium rounded-md text-white bg-indigo-600 hover:bg-indigo-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500">
Get Started
</a>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<div class="gradient-bg text-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-20 md:py-32">
<div class="md:flex md:items-center md:justify-between">
<div class="md:w-1/2 mb-10 md:mb-0">
<h1 class="text-4xl md:text-5xl font-bold leading-tight mb-6">Build the future.<br>Today.</h1>
<p class="text-xl mb-8 text-gray-300">Alpha-1 transforms your vision into reality with AI-powered app creation.</p>
<div class="flex flex-col sm:flex-row gap-4">
<div class="relative flex-grow">
<input type="text" placeholder="Describe your app idea..." class="w-full px-5 py-4 rounded-lg text-gray-900 input-glow focus:outline-none">
<button class="absolute right-2 top-2 bg-indigo-600 text-white p-2 rounded-md">
<i class="fas fa-arrow-right"></i>
</button>
</div>
<button class="bg-white text-indigo-600 px-6 py-4 rounded-lg font-medium hover:bg-gray-100 transition duration-300">
Try Demo
</button>
</div>
<p class="mt-4 text-sm text-indigo-100">Not sure where to start? <a href="#" class="underline">Try one of these templates</a></p>
</div>
<div class="md:w-1/2 relative">
<div class="bg-white/10 backdrop-blur-md rounded-2xl p-6 shadow-xl border border-white/20">
<div class="flex justify-between items-center mb-4">
<div class="flex space-x-2">
<div class="w-3 h-3 rounded-full bg-red-500"></div>
<div class="w-3 h-3 rounded-full bg-yellow-500"></div>
<div class="w-3 h-3 rounded-full bg-green-500"></div>
</div>
<span class="text-sm text-white/70">Subscription Tracker</span>
</div>
<div class="bg-white rounded-lg p-4 text-gray-800 mb-4">
<p class="font-medium mb-2">Subscription Management Dashboard</p>
<p class="text-sm text-gray-600">Track all your subscriptions in one place with payment reminders and cost analysis.</p>
</div>
<div class="flex justify-between items-center">
<button class="text-sm text-white/80 hover:text-white">Add styling</button>
<button class="text-sm text-white/80 hover:text-white">Improve prompt</button>
<button class="bg-indigo-600 text-white px-4 py-2 rounded-md text-sm flex items-center">
Build <i class="fas fa-arrow-right ml-2"></i>
</button>
</div>
</div>
<div class="absolute -bottom-10 -left-10 w-32 h-32 bg-pink-500 rounded-full mix-blend-multiply filter blur-xl opacity-70 animate-blob"></div>
<div class="absolute -top-10 -right-10 w-32 h-32 bg-blue-500 rounded-full mix-blend-multiply filter blur-xl opacity-70 animate-blob animation-delay-2000"></div>
</div>
</div>
<div class="mt-16 flex items-center justify-center">
<div class="bg-white/20 px-6 py-3 rounded-full">
<span class="text-white font-medium">Trusted by 400K+ users worldwide</span>
</div>
</div>
</div>
</div>
<!-- Consider Yourself Limitless -->
<div class="bg-gray-50 py-20">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
<h2 class="text-3xl font-bold mb-6">Consider yourself limitless.</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto mb-12">If you can describe it, you can build it.</p>
<div class="grid md:grid-cols-3 gap-8 mt-12">
<div class="bg-dark border border-gray-800 p-8 rounded-xl hover:border-primary transition duration-300">
<div class="feature-icon bg-black border border-primary/30 text-primary">
<i class="fas fa-bolt text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3 text-white">Create at light speed</h3>
<p class="text-gray-400">Alpha-1 transforms your ideas into working apps instantly with cutting-edge AI.</p>
</div>
<div class="bg-white p-8 rounded-xl shadow-sm hover:shadow-md transition duration-300">
<div class="feature-icon bg-blue-100 text-blue-600">
<i class="fas fa-server text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">The backend's built-in automatically</h3>
<p class="text-gray-600">Everything your idea needs to function, like letting users sign in, saving their data, or creating role-based permissions is taken care of behind the scenes.</p>
</div>
<div class="bg-white p-8 rounded-xl shadow-sm hover:shadow-md transition duration-300">
<div class="feature-icon bg-green-100 text-green-600">
<i class="fas fa-rocket text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Ready to use, instantly</h3>
<p class="text-gray-600">Our platform comes with built-in hosting, so when your app is ready the only thing left to do is publish, put it to use, and share it with your friends or community.</p>
</div>
</div>
</div>
</div>
<!-- Visual Demo -->
<div class="py-20 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="md:flex items-center gap-12">
<div class="md:w-1/2 mb-10 md:mb-0">
<div class="relative">
<img src="https://static.wixstatic.com/media/343a2a_b967260891c14df2873e82e2bab56c46~mv2.jpg/v1/fill/w_472,h_395,al_c,q_80,usm_0.66_1.00_0.01,enc_avif,quality_auto/create-at-speed.jpg" alt="Create at speed" class="rounded-xl shadow-xl w-full">
<div class="absolute -bottom-6 -right-6 bg-white p-4 rounded-lg shadow-lg">
<div class="flex items-center">
<div class="w-10 h-10 bg-indigo-100 rounded-full flex items-center justify-center text-indigo-600 mr-3">
<i class="fas fa-check"></i>
</div>
<div>
<p class="font-medium">App created</p>
<p class="text-sm text-gray-500">45 seconds</p>
</div>
</div>
</div>
</div>
</div>
<div class="md:w-1/2">
<h2 class="text-3xl font-bold mb-6">From idea to app in under a minute</h2>
<p class="text-lg text-gray-600 mb-8">Our AI understands your requirements and generates the complete application with UI, database, and business logic - all from a simple description.</p>
<div class="space-y-4">
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<div class="w-8 h-8 bg-indigo-100 rounded-full flex items-center justify-center text-indigo-600">
<i class="fas fa-check text-sm"></i>
</div>
</div>
<div class="ml-3">
<p class="text-gray-800 font-medium">No-code interface</p>
<p class="text-gray-600 text-sm">Build without writing a single line of code</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<div class="w-8 h-8 bg-indigo-100 rounded-full flex items-center justify-center text-indigo-600">
<i class="fas fa-check text-sm"></i>
</div>
</div>
<div class="ml-3">
<p class="text-gray-800 font-medium">Instant deployment</p>
<p class="text-gray-600 text-sm">Your app is live as soon as it's created</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<div class="w-8 h-8 bg-indigo-100 rounded-full flex items-center justify-center text-indigo-600">
<i class="fas fa-check text-sm"></i>
</div>
</div>
<div class="ml-3">
<p class="text-gray-800 font-medium">Full customization</p>
<p class="text-gray-600 text-sm">Modify and extend your app anytime</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Testimonials -->
<div class="py-20 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold mb-4">"Okay, Base44 has blown my mind."</h2>
<p class="text-xl text-gray-600">And other great things our users say about us</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- Testimonial 1 -->
<div class="bg-black border border-gray-800 p-6 rounded-xl testimonial-card hover:border-primary">
<div class="flex items-center mb-4">
<img src="https://static.wixstatic.com/media/343a2a_c8c0ee8dc09e4ff1a3b8b33c76ba9db2~mv2.webp" alt="Hasan Toor" class="w-12 h-12 rounded-full">
<div class="ml-3">
<p class="font-medium">Hasan Toor</p>
<p class="text-sm text-gray-500">@hasantoxr</p>
</div>
</div>
<p class="text-gray-700">"Okay, Base44 has blown my mind 🤯. No iterations, no changes, just exactly what I wanted from the first try. This is revolutionary!"</p>
</div>
<!-- Testimonial 2 -->
<div class="bg-white p-6 rounded-xl testimonial-card">
<div class="flex items-center mb-4">
<img src="https://static.wixstatic.com/media/343a2a_0b010735039c4e6ba91325ccb2a002da~mv2.webp" alt="Maria Martin" class="w-12 h-12 rounded-full">
<div class="ml-3">
<p class="font-medium">Maria Martin</p>
<p class="text-sm text-gray-500">@marias_martin</p>
</div>
</div>
<p class="text-gray-700">"Just built this awesome web app using @base_44! I'm blown away by how easy it was. From idea to working prototype in literally minutes."</p>
</div>
<!-- Testimonial 3 -->
<div class="bg-white p-6 rounded-xl testimonial-card">
<div class="flex items-center mb-4">
<img src="https://static.wixstatic.com/media/343a2a_364316e4367048b1b0c8d952971ca4fc~mv2.webp" alt="Best of Philosophy" class="w-12 h-12 rounded-full">
<div class="ml-3">
<p class="font-medium">Best of Philosophy</p>
<p class="text-sm text-gray-500">@BotPhilosophyQ</p>
</div>
</div>
<p class="text-gray-700">"You can now build a full AI app without writing any code. This tool is perfect for founders who want to build fast without technical hurdles."</p>
</div>
</div>
<div class="mt-12 text-center">
<button class="inline-flex items-center px-6 py-3 border border-gray-300 shadow-sm text-base font-medium rounded-md text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500">
Read more testimonials
<i class="fas fa-chevron-right ml-2"></i>
</button>
</div>
</div>
</div>
<!-- Pricing -->
<div class="py-20 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold mb-4">Pricing plans for every need</h2>
<p class="text-xl text-gray-600">Scale as you go with plans designed to match your growth</p>
</div>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8 max-w-5xl mx-auto">
<!-- Free Plan -->
<div class="border border-gray-800 rounded-xl p-8 hover:border-primary transition duration-300 bg-black">
<h3 class="text-xl font-bold mb-4">Start for free</h3>
<p class="text-gray-600 mb-6">Perfect for trying out Base44 and building simple apps</p>
<div class="mb-8">
<span class="text-4xl font-bold">$0</span>
<span class="text-gray-500">/mo</span>
</div>
<ul class="space-y-3 mb-8">
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>All core features</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Built-in integrations</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Authentication system</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Database functionality</span>
</li>
</ul>
<button class="w-full bg-gray-100 text-gray-800 py-3 rounded-lg font-medium hover:bg-gray-200 transition duration-300">
Get Started
</button>
</div>
<!-- Pro Plan -->
<div class="border-2 border-indigo-500 rounded-xl p-8 bg-indigo-50 relative">
<div class="absolute top-0 right-0 bg-indigo-500 text-white text-xs font-bold px-3 py-1 rounded-bl-lg rounded-tr-lg">
MOST POPULAR
</div>
<h3 class="text-xl font-bold mb-4">Pro Plan</h3>
<p class="text-gray-600 mb-6">For serious builders who need more power</p>
<div class="mb-8">
<span class="text-4xl font-bold">$20</span>
<span class="text-gray-500">/mo</span>
</div>
<ul class="space-y-3 mb-8">
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Everything in Free</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Advanced AI capabilities</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Priority support</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Custom domains</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Team collaboration</span>
</li>
</ul>
<button class="w-full bg-indigo-600 text-white py-3 rounded-lg font-medium hover:bg-indigo-700 transition duration-300">
Upgrade Now
</button>
</div>
<!-- Enterprise Plan -->
<div class="border border-gray-200 rounded-xl p-8 hover:border-indigo-300 hover:shadow-lg transition duration-300">
<h3 class="text-xl font-bold mb-4">Enterprise</h3>
<p class="text-gray-600 mb-6">For large organizations with custom needs</p>
<div class="mb-8">
<span class="text-4xl font-bold">Custom</span>
</div>
<ul class="space-y-3 mb-8">
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Everything in Pro</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Dedicated infrastructure</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>SSO & advanced security</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Custom integrations</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>24/7 premium support</span>
</li>
</ul>
<button class="w-full bg-gray-100 text-gray-800 py-3 rounded-lg font-medium hover:bg-gray-200 transition duration-300">
Contact Sales
</button>
</div>
</div>
<div class="mt-12 text-center text-gray-500">
<p>Upgrade as you go for more credits, more features, and more support.</p>
</div>
</div>
</div>
<!-- FAQ -->
<div class="py-20 bg-gray-50">
<div class="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold mb-4">Frequently Asked Questions</h2>
<p class="text-xl text-gray-600">Everything you need to know about Base44</p>
</div>
<div class="space-y-6">
<!-- FAQ Item 1 -->
<div class="bg-white p-6 rounded-xl shadow-sm">
<button class="flex justify-between items-center w-full text-left" onclick="toggleFAQ(1)">
<h3 class="text-lg font-medium text-gray-900">What is Base44?</h3>
<i class="fas fa-chevron-down text-gray-500 transition-transform duration-300" id="faq-icon-1"></i>
</button>
<div class="mt-4 text-gray-600 hidden" id="faq-content-1">
<p>Base44 is an AI-powered platform that lets you turn any idea into a fully-functional custom app, without the need for any coding experience.</p>
</div>
</div>
<!-- FAQ Item 2 -->
<div class="bg-white p-6 rounded-xl shadow-sm">
<button class="flex justify-between items-center w-full text-left" onclick="toggleFAQ(2)">
<h3 class="text-lg font-medium text-gray-900">Do I need coding experience to use Base44?</h3>
<i class="fas fa-chevron-down text-gray-500 transition-transform duration-300" id="faq-icon-2"></i>
</button>
<div class="mt-4 text-gray-600 hidden" id="faq-content-2">
<p>No. Our platform is designed to be easily accessible to non-technical users. Just describe your software needs in plain language, and our AI will handle the technical implementation.</p>
</div>
</div>
<!-- FAQ Item 3 -->
<div class="bg-white p-6 rounded-xl shadow-sm">
<button class="flex justify-between items-center w-full text-left" onclick="toggleFAQ(3)">
<h3 class="text-lg font-medium text-gray-900">What types of applications can I build with Base44?</h3>
<i class="fas fa-chevron-down text-gray-500 transition-transform duration-300" id="faq-icon-3"></i>
</button>
<div class="mt-4 text-gray-600 hidden" id="faq-content-3">
<p>Base44 is versatile and can be used to build a wide range of applications, including but not limited to: personal productivity apps, back-office tools, customer portals, and business process automation tools. You can also use it for rapid prototyping and creating MVPs.</p>
</div>
</div>
<!-- FAQ Item 4 -->
<div class="bg-white p-6 rounded-xl shadow-sm">
<button class="flex justify-between items-center w-full text-left" onclick="toggleFAQ(4)">
<h3 class="text-lg font-medium text-gray-900">What kind of integrations does Base44 support?</h3>
<i class="fas fa-chevron-down text-gray-500 transition-transform duration-300" id="faq-icon-4"></i>
</button>
<div class="mt-4 text-gray-600 hidden" id="faq-content-4">
<p>Most common integrations are already built into the platform. You can directly send emails, use SMS, connect to any external API, and query databases right out of the box—no complex setup required.</p>
</div>
</div>
<!-- FAQ Item 5 -->
<div class="bg-white p-6 rounded-xl shadow-sm">
<button class="flex justify-between items-center w-full text-left" onclick="toggleFAQ(5)">
<h3 class="text-lg font-medium text-gray-900">How are Base44 applications deployed?</h3>
<i class="fas fa-chevron-down text-gray-500 transition-transform duration-300" id="faq-icon-5"></i>
</button>
<div class="mt-4 text-gray-600 hidden" id="faq-content-5">
<p>We take care of it automatically. Base44 comes with built-in hosting, so there's no deployment process. When your app is created, it's instantly live and shareable.</p>
</div>
</div>
</div>
<div class="mt-12 text-center">
<p class="text-gray-600 mb-4">Still have questions?</p>
<button 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 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500">
Contact Support
<i class="fas fa-envelope ml-2"></i>
</button>
</div>
</div>
</div>
<!-- CTA -->
<div class="gradient-bg text-white py-20">
<div class="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
<h2 class="text-3xl font-bold mb-6">Ready to build your dream app?</h2>
<p class="text-xl mb-8">Join 400,000+ creators who are building amazing apps with Base44.</p>
<div class="flex flex-col sm:flex-row gap-4 justify-center">
<button class="bg-gradient-to-r from-primary to-secondary text-white px-8 py-4 rounded-lg font-medium hover:opacity-90 transition duration-300">
Launch Alpha-1
</button>
<button class="bg-transparent border-2 border-primary text-white px-8 py-4 rounded-lg font-medium hover:bg-primary/10 transition duration-300">
Watch Demo
</button>
</div>
</div>
</div>
<!-- Footer -->
<footer class="bg-dark border-t border-gray-800 pt-16 pb-8">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-2 md:grid-cols-4 lg:grid-cols-5 gap-8">
<div class="col-span-2">
<h3 class="text-2xl font-bold mb-4">Base44</h3>
<p class="text-gray-400 mb-6">Build fully-functional apps in minutes with just your words. No coding necessary.</p>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i class="fab fa-facebook"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i class="fab fa-instagram"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i class="fab fa-linkedin"></i>
</a>
</div>
</div>
<div>
<h4 class="text-sm font-semibold text-gray-300 uppercase tracking-wider mb-4">Product</h4>
<ul class="space-y-3">
<li><a href="#" class="text-gray-400 hover:text-white">Features</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Pricing</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Templates</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Integrations</a></li>
</ul>
</div>
<div>
<h4 class="text-sm font-semibold text-gray-300 uppercase tracking-wider mb-4">Resources</h4>
<ul class="space-y-3">
<li><a href="#" class="text-gray-400 hover:text-white">Documentation</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Guides</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Blog</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Community</a></li>
</ul>
</div>
<div>
<h4 class="text-sm font-semibold text-gray-300 uppercase tracking-wider mb-4">Company</h4>
<ul class="space-y-3">
<li><a href="#" class="text-gray-400 hover:text-white">About</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Careers</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Privacy</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Terms</a></li>
</ul>
</div>
</div>
<div class="mt-12 pt-8 border-t border-gray-800 flex flex-col md:flex-row justify-between items-center">
<p class="text-gray-400 text-sm">© 2023 Base44. All rights reserved.</p>
<div class="mt-4 md:mt-0">
<a href="#" class="text-gray-400 hover:text-white text-sm mr-4">Privacy Policy</a>
<a href="#" class="text-gray-400 hover:text-white text-sm mr-4">Terms of Service</a>
<a href="#" class="text-gray-400 hover:text-white text-sm">Cookie Policy</a>
</div>
</div>
</div>
</footer>
<script>
// Toggle FAQ content
function toggleFAQ(id) {
const content = document.getElementById(`faq-content-${id}`);
const icon = document.getElementById(`faq-icon-${id}`);
if (content.classList.contains('hidden')) {
content.classList.remove('hidden');
icon.classList.add('transform', 'rotate-180');
} else {
content.classList.add('hidden');
icon.classList.remove('transform', 'rotate-180');
}
}
// Initialize all FAQs to be closed
document.addEventListener('DOMContentLoaded', function() {
for (let i = 1; i <= 5; i++) {
document.getElementById(`faq-content-${i}`).classList.add('hidden');
}
});
</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=Skidrive/alpha-1" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |