Spaces:
Running
Running
File size: 42,891 Bytes
329f95c |
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 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Luigi12345 - Creative Landing Page</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>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
:root {
--primary: #6c5ce7;
--secondary: #a29bfe;
--dark: #2d3436;
--light: #f5f6fa;
}
body {
font-family: 'Poppins', sans-serif;
background-color: var(--light);
overflow-x: hidden;
}
.gradient-bg {
background: linear-gradient(135deg, var(--primary), var(--secondary));
}
.text-gradient {
background: linear-gradient(135deg, var(--primary), var(--secondary));
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.card-hover {
transition: all 0.3s ease;
}
.card-hover:hover {
transform: translateY(-10px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.nav-link {
position: relative;
}
.nav-link::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: 0;
left: 0;
background-color: var(--primary);
transition: width 0.3s ease;
}
.nav-link:hover::after {
width: 100%;
}
.hero-image {
animation: float 6s ease-in-out infinite;
}
@keyframes float {
0% { transform: translateY(0px); }
50% { transform: translateY(-20px); }
100% { transform: translateY(0px); }
}
.feature-icon {
transition: all 0.3s ease;
}
.feature-card:hover .feature-icon {
transform: rotate(15deg) scale(1.1);
}
.scroll-down {
animation: bounce 2s infinite;
}
@keyframes bounce {
0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
40% {transform: translateY(-20px);}
60% {transform: translateY(-10px);}
}
</style>
</head>
<body class="min-h-screen">
<!-- Navigation -->
<nav class="fixed w-full z-50 bg-white shadow-sm">
<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 text-gradient">Luigi12345</span>
</div>
</div>
<div class="hidden md:flex items-center space-x-8">
<a href="#home" class="nav-link text-gray-700 hover:text-purple-600 px-3 py-2 text-sm font-medium">Home</a>
<a href="#features" class="nav-link text-gray-700 hover:text-purple-600 px-3 py-2 text-sm font-medium">Features</a>
<a href="#about" class="nav-link text-gray-700 hover:text-purple-600 px-3 py-2 text-sm font-medium">About</a>
<a href="#pricing" class="nav-link text-gray-700 hover:text-purple-600 px-3 py-2 text-sm font-medium">Pricing</a>
<a href="#contact" class="nav-link text-gray-700 hover:text-purple-600 px-3 py-2 text-sm font-medium">Contact</a>
</div>
<div class="flex items-center">
<button class="gradient-bg text-white px-6 py-2 rounded-full font-medium hover:opacity-90 transition duration-300">
Get Started
</button>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="pt-32 pb-20 px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0">
<h1 class="text-4xl md:text-5xl lg:text-6xl font-bold text-gray-800 leading-tight mb-6">
Build Amazing <span class="text-gradient">Digital Experiences</span>
</h1>
<p class="text-lg text-gray-600 mb-8 max-w-lg">
Luigi12345 helps you create stunning websites and applications with ease. Our platform provides all the tools you need to bring your ideas to life.
</p>
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
<button class="gradient-bg text-white px-8 py-3 rounded-full font-medium hover:opacity-90 transition duration-300">
Start Free Trial
</button>
<button class="border border-purple-600 text-purple-600 px-8 py-3 rounded-full font-medium hover:bg-purple-50 transition duration-300">
Watch Demo <i class="fas fa-play-circle ml-2"></i>
</button>
</div>
<div class="mt-10 flex items-center space-x-4">
<div class="flex -space-x-2">
<img class="w-10 h-10 rounded-full border-2 border-white" src="https://randomuser.me/api/portraits/women/12.jpg" alt="User">
<img class="w-10 h-10 rounded-full border-2 border-white" src="https://randomuser.me/api/portraits/men/32.jpg" alt="User">
<img class="w-10 h-10 rounded-full border-2 border-white" src="https://randomuser.me/api/portraits/women/44.jpg" alt="User">
</div>
<div>
<p class="text-sm text-gray-600">Join <span class="font-bold text-purple-600">10,000+</span> happy users</p>
<div class="flex">
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<span class="ml-2 text-sm text-gray-600">5.0 (2K reviews)</span>
</div>
</div>
</div>
</div>
<div class="md:w-1/2 flex justify-center">
<img src="https://illustrations.popsy.co/amber/digital-nomad.svg" alt="Hero Image" class="hero-image w-full max-w-md">
</div>
</div>
<div class="mt-20 text-center">
<a href="#features" class="scroll-down inline-block text-gray-500 hover:text-purple-600">
<i class="fas fa-chevron-down text-2xl"></i>
</a>
</div>
</section>
<!-- Trusted By Section -->
<section class="py-12 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<p class="text-center text-gray-500 mb-8">Trusted by innovative companies worldwide</p>
<div class="flex flex-wrap justify-center items-center gap-8 md:gap-16">
<img src="https://logo.clearbit.com/google.com" alt="Google" class="h-8 opacity-60 hover:opacity-100 transition duration-300">
<img src="https://logo.clearbit.com/microsoft.com" alt="Microsoft" class="h-8 opacity-60 hover:opacity-100 transition duration-300">
<img src="https://logo.clearbit.com/airbnb.com" alt="Airbnb" class="h-8 opacity-60 hover:opacity-100 transition duration-300">
<img src="https://logo.clearbit.com/spotify.com" alt="Spotify" class="h-8 opacity-60 hover:opacity-100 transition duration-300">
<img src="https://logo.clearbit.com/slack.com" alt="Slack" class="h-8 opacity-60 hover:opacity-100 transition duration-300">
</div>
</div>
</section>
<!-- Features Section -->
<section id="features" class="py-20 px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto">
<div class="text-center mb-16">
<span class="inline-block px-3 py-1 text-sm font-medium rounded-full gradient-bg text-white mb-4">Features</span>
<h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">Amazing Features to Boost Your Productivity</h2>
<p class="text-lg text-gray-600 max-w-2xl mx-auto">Our platform comes packed with powerful features designed to help you work smarter, not harder.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Feature 1 -->
<div class="feature-card bg-white p-8 rounded-xl shadow-sm hover:shadow-md transition duration-300 card-hover">
<div class="w-14 h-14 gradient-bg rounded-lg flex items-center justify-center mb-6">
<i class="fas fa-bolt feature-icon text-white text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3">Lightning Fast</h3>
<p class="text-gray-600 mb-4">Optimized for speed with our cutting-edge technology stack that ensures your projects load in milliseconds.</p>
<a href="#" class="text-purple-600 font-medium inline-flex items-center">
Learn more <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
<!-- Feature 2 -->
<div class="feature-card bg-white p-8 rounded-xl shadow-sm hover:shadow-md transition duration-300 card-hover">
<div class="w-14 h-14 gradient-bg rounded-lg flex items-center justify-center mb-6">
<i class="fas fa-shield-alt feature-icon text-white text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3">Secure & Reliable</h3>
<p class="text-gray-600 mb-4">Enterprise-grade security with end-to-end encryption and regular backups to keep your data safe.</p>
<a href="#" class="text-purple-600 font-medium inline-flex items-center">
Learn more <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
<!-- Feature 3 -->
<div class="feature-card bg-white p-8 rounded-xl shadow-sm hover:shadow-md transition duration-300 card-hover">
<div class="w-14 h-14 gradient-bg rounded-lg flex items-center justify-center mb-6">
<i class="fas fa-puzzle-piece feature-icon text-white text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3">Easy Integration</h3>
<p class="text-gray-600 mb-4">Connect with your favorite tools and services through our extensive API and plugin ecosystem.</p>
<a href="#" class="text-purple-600 font-medium inline-flex items-center">
Learn more <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
<!-- Feature 4 -->
<div class="feature-card bg-white p-8 rounded-xl shadow-sm hover:shadow-md transition duration-300 card-hover">
<div class="w-14 h-14 gradient-bg rounded-lg flex items-center justify-center mb-6">
<i class="fas fa-chart-line feature-icon text-white text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3">Advanced Analytics</h3>
<p class="text-gray-600 mb-4">Get deep insights into your performance with our comprehensive analytics dashboard.</p>
<a href="#" class="text-purple-600 font-medium inline-flex items-center">
Learn more <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
<!-- Feature 5 -->
<div class="feature-card bg-white p-8 rounded-xl shadow-sm hover:shadow-md transition duration-300 card-hover">
<div class="w-14 h-14 gradient-bg rounded-lg flex items-center justify-center mb-6">
<i class="fas fa-mobile-alt feature-icon text-white text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3">Mobile Friendly</h3>
<p class="text-gray-600 mb-4">Fully responsive design that works perfectly on any device, from desktop to smartphone.</p>
<a href="#" class="text-purple-600 font-medium inline-flex items-center">
Learn more <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
<!-- Feature 6 -->
<div class="feature-card bg-white p-8 rounded-xl shadow-sm hover:shadow-md transition duration-300 card-hover">
<div class="w-14 h-14 gradient-bg rounded-lg flex items-center justify-center mb-6">
<i class="fas fa-headset feature-icon text-white text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3">24/7 Support</h3>
<p class="text-gray-600 mb-4">Our dedicated support team is available around the clock to help you with any questions.</p>
<a href="#" class="text-purple-600 font-medium inline-flex items-center">
Learn more <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-20 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0">
<img src="https://illustrations.popsy.co/amber/working-from-home.svg" alt="About Us" class="w-full max-w-md mx-auto">
</div>
<div class="md:w-1/2 md:pl-12">
<span class="inline-block px-3 py-1 text-sm font-medium rounded-full gradient-bg text-white mb-4">About Us</span>
<h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-6">We Help Businesses Grow</h2>
<p class="text-lg text-gray-600 mb-6">
Founded in 2015, Luigi12345 has been at the forefront of digital innovation, helping businesses of all sizes transform their ideas into reality.
</p>
<div class="space-y-4 mb-8">
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<div class="w-6 h-6 rounded-full gradient-bg flex items-center justify-center">
<i class="fas fa-check text-white text-xs"></i>
</div>
</div>
<div class="ml-3">
<p class="text-gray-700 font-medium">Award-winning platform</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<div class="w-6 h-6 rounded-full gradient-bg flex items-center justify-center">
<i class="fas fa-check text-white text-xs"></i>
</div>
</div>
<div class="ml-3">
<p class="text-gray-700 font-medium">100+ team members worldwide</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<div class="w-6 h-6 rounded-full gradient-bg flex items-center justify-center">
<i class="fas fa-check text-white text-xs"></i>
</div>
</div>
<div class="ml-3">
<p class="text-gray-700 font-medium">Trusted by 10,000+ customers</p>
</div>
</div>
</div>
<button class="gradient-bg text-white px-8 py-3 rounded-full font-medium hover:opacity-90 transition duration-300">
Our Story <i class="fas fa-arrow-right ml-2"></i>
</button>
</div>
</div>
</div>
</section>
<!-- Pricing Section -->
<section id="pricing" class="py-20 px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto">
<div class="text-center mb-16">
<span class="inline-block px-3 py-1 text-sm font-medium rounded-full gradient-bg text-white mb-4">Pricing</span>
<h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">Simple, Transparent Pricing</h2>
<p class="text-lg text-gray-600 max-w-2xl mx-auto">Choose the perfect plan for your business needs. No hidden fees, cancel anytime.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 max-w-5xl mx-auto">
<!-- Basic Plan -->
<div class="bg-white rounded-xl shadow-sm overflow-hidden card-hover">
<div class="p-8">
<h3 class="text-xl font-bold text-gray-800 mb-2">Basic</h3>
<p class="text-gray-600 mb-6">Perfect for individuals and small teams</p>
<div class="mb-6">
<span class="text-4xl font-bold text-gray-800">$19</span>
<span class="text-gray-600">/month</span>
</div>
<button class="w-full border border-purple-600 text-purple-600 px-6 py-2 rounded-full font-medium hover:bg-purple-50 transition duration-300 mb-6">
Get Started
</button>
<ul class="space-y-3">
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span class="text-gray-600">Up to 5 projects</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span class="text-gray-600">10GB storage</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span class="text-gray-600">Basic analytics</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span class="text-gray-600">Email support</span>
</li>
</ul>
</div>
</div>
<!-- Pro Plan (Featured) -->
<div class="relative">
<div class="absolute top-0 left-0 right-0 h-2 gradient-bg"></div>
<div class="bg-white rounded-xl shadow-lg overflow-hidden card-hover transform scale-105">
<div class="p-8">
<div class="flex justify-between items-start mb-2">
<h3 class="text-xl font-bold text-gray-800">Pro</h3>
<span class="px-3 py-1 text-xs font-medium rounded-full gradient-bg text-white">Popular</span>
</div>
<p class="text-gray-600 mb-6">For growing businesses and agencies</p>
<div class="mb-6">
<span class="text-4xl font-bold text-gray-800">$49</span>
<span class="text-gray-600">/month</span>
</div>
<button class="w-full gradient-bg text-white px-6 py-2 rounded-full font-medium hover:opacity-90 transition duration-300 mb-6">
Get Started
</button>
<ul class="space-y-3">
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span class="text-gray-600">Up to 20 projects</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span class="text-gray-600">50GB storage</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span class="text-gray-600">Advanced analytics</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span class="text-gray-600">Priority support</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span class="text-gray-600">API access</span>
</li>
</ul>
</div>
</div>
</div>
<!-- Enterprise Plan -->
<div class="bg-white rounded-xl shadow-sm overflow-hidden card-hover">
<div class="p-8">
<h3 class="text-xl font-bold text-gray-800 mb-2">Enterprise</h3>
<p class="text-gray-600 mb-6">For large organizations with custom needs</p>
<div class="mb-6">
<span class="text-4xl font-bold text-gray-800">$99</span>
<span class="text-gray-600">/month</span>
</div>
<button class="w-full border border-purple-600 text-purple-600 px-6 py-2 rounded-full font-medium hover:bg-purple-50 transition duration-300 mb-6">
Get Started
</button>
<ul class="space-y-3">
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span class="text-gray-600">Unlimited projects</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span class="text-gray-600">500GB storage</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span class="text-gray-600">Advanced analytics</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span class="text-gray-600">24/7 dedicated support</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span class="text-gray-600">Custom integrations</span>
</li>
</ul>
</div>
</div>
</div>
<div class="mt-16 text-center">
<p class="text-gray-600 mb-4">Need something custom? We've got you covered.</p>
<button class="border border-purple-600 text-purple-600 px-8 py-3 rounded-full font-medium hover:bg-purple-50 transition duration-300 inline-flex items-center">
Contact Sales <i class="fas fa-arrow-right ml-2"></i>
</button>
</div>
</section>
<!-- Testimonials Section -->
<section 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">
<span class="inline-block px-3 py-1 text-sm font-medium rounded-full gradient-bg text-white mb-4">Testimonials</span>
<h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">What Our Customers Say</h2>
<p class="text-lg text-gray-600 max-w-2xl mx-auto">Don't just take our word for it. Here's what our customers have to say about us.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Testimonial 1 -->
<div class="bg-white p-8 rounded-xl shadow-sm card-hover">
<div class="flex items-center mb-4">
<div class="flex">
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
</div>
</div>
<p class="text-gray-600 mb-6">
"Luigi12345 has completely transformed our workflow. The platform is intuitive and packed with features that have saved us countless hours."
</p>
<div class="flex items-center">
<img class="w-12 h-12 rounded-full mr-4" src="https://randomuser.me/api/portraits/women/32.jpg" alt="Sarah Johnson">
<div>
<h4 class="font-bold text-gray-800">Sarah Johnson</h4>
<p class="text-sm text-gray-600">CEO, TechSolutions</p>
</div>
</div>
</div>
<!-- Testimonial 2 -->
<div class="bg-white p-8 rounded-xl shadow-sm card-hover">
<div class="flex items-center mb-4">
<div class="flex">
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
</div>
</div>
<p class="text-gray-600 mb-6">
"The customer support is outstanding. They helped us migrate our entire system with zero downtime. Highly recommended!"
</p>
<div class="flex items-center">
<img class="w-12 h-12 rounded-full mr-4" src="https://randomuser.me/api/portraits/men/54.jpg" alt="Michael Chen">
<div>
<h4 class="font-bold text-gray-800">Michael Chen</h4>
<p class="text-sm text-gray-600">CTO, DigitalAgency</p>
</div>
</div>
</div>
<!-- Testimonial 3 -->
<div class="bg-white p-8 rounded-xl shadow-sm card-hover">
<div class="flex items-center mb-4">
<div class="flex">
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
</div>
</div>
<p class="text-gray-600 mb-6">
"We've tried many similar services, but Luigi12345 stands out with its reliability and innovative features. It's worth every penny."
</p>
<div class="flex items-center">
<img class="w-12 h-12 rounded-full mr-4" src="https://randomuser.me/api/portraits/women/68.jpg" alt="Emily Rodriguez">
<div>
<h4 class="font-bold text-gray-800">Emily Rodriguez</h4>
<p class="text-sm text-gray-600">Marketing Director, BrandCo</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="gradient-bg py-20">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
<h2 class="text-3xl md:text-4xl font-bold text-white mb-6">Ready to Transform Your Business?</h2>
<p class="text-lg text-purple-100 mb-8 max-w-2xl mx-auto">
Join thousands of satisfied customers who are already benefiting from our platform.
</p>
<div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-4">
<button class="bg-white text-purple-600 px-8 py-3 rounded-full font-medium hover:bg-gray-100 transition duration-300">
Start Free Trial
</button>
<button class="border border-white text-white px-8 py-3 rounded-full font-medium hover:bg-white hover:bg-opacity-10 transition duration-300">
Schedule a Demo
</button>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-20 px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto">
<div class="flex flex-col md:flex-row">
<div class="md:w-1/2 mb-10 md:mb-0">
<span class="inline-block px-3 py-1 text-sm font-medium rounded-full gradient-bg text-white mb-4">Contact</span>
<h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-6">Get In Touch</h2>
<p class="text-lg text-gray-600 mb-8">
Have questions or want to learn more? Our team is here to help you with anything you need.
</p>
<div class="space-y-6">
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<div class="w-10 h-10 rounded-full gradient-bg flex items-center justify-center">
<i class="fas fa-map-marker-alt text-white"></i>
</div>
</div>
<div class="ml-4">
<h4 class="text-lg font-bold text-gray-800">Our Office</h4>
<p class="text-gray-600">123 Main Street, Suite 400<br>San Francisco, CA 94107</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<div class="w-10 h-10 rounded-full gradient-bg flex items-center justify-center">
<i class="fas fa-envelope text-white"></i>
</div>
</div>
<div class="ml-4">
<h4 class="text-lg font-bold text-gray-800">Email Us</h4>
<p class="text-gray-600">[email protected]<br>[email protected]</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<div class="w-10 h-10 rounded-full gradient-bg flex items-center justify-center">
<i class="fas fa-phone-alt text-white"></i>
</div>
</div>
<div class="ml-4">
<h4 class="text-lg font-bold text-gray-800">Call Us</h4>
<p class="text-gray-600">+1 (555) 123-4567<br>Mon-Fri, 9am-5pm PST</p>
</div>
</div>
</div>
<div class="mt-8 flex space-x-4">
<a href="#" class="w-10 h-10 rounded-full bg-gray-100 flex items-center justify-center text-gray-600 hover:bg-purple-600 hover:text-white transition duration-300">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-gray-100 flex items-center justify-center text-gray-600 hover:bg-purple-600 hover:text-white transition duration-300">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-gray-100 flex items-center justify-center text-gray-600 hover:bg-purple-600 hover:text-white transition duration-300">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-gray-100 flex items-center justify-center text-gray-600 hover:bg-purple-600 hover:text-white transition duration-300">
<i class="fab fa-instagram"></i>
</a>
</div>
</div>
<div class="md:w-1/2 md:pl-12">
<div class="bg-white p-8 rounded-xl shadow-sm">
<h3 class="text-xl font-bold text-gray-800 mb-6">Send Us a Message</h3>
<form>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6 mb-6">
<div>
<label for="name" class="block text-sm font-medium text-gray-700 mb-1">Name</label>
<input type="text" id="name" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-purple-600 focus:border-transparent">
</div>
<div>
<label for="email" class="block text-sm font-medium text-gray-700 mb-1">Email</label>
<input type="email" id="email" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-purple-600 focus:border-transparent">
</div>
</div>
<div class="mb-6">
<label for="subject" class="block text-sm font-medium text-gray-700 mb-1">Subject</label>
<input type="text" id="subject" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-purple-600 focus:border-transparent">
</div>
<div class="mb-6">
<label for="message" class="block text-sm font-medium text-gray-700 mb-1">Message</label>
<textarea id="message" rows="4" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-purple-600 focus:border-transparent"></textarea>
</div>
<button type="submit" class="gradient-bg text-white px-8 py-3 rounded-full font-medium hover:opacity-90 transition duration-300 w-full">
Send Message
</button>
</form>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white py-12">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<h3 class="text-xl font-bold mb-4">Luigi12345</h3>
<p class="text-gray-400">
Empowering businesses with innovative digital solutions since 2015.
</p>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Product</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Features</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Pricing</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Integrations</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Updates</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Company</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">About</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Careers</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Blog</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Press</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Resources</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Documentation</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Help Center</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Community</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Webinars</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 class="text-gray-400 mb-4 md:mb-0">© 2023 Luigi12345. All rights reserved.</p>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-white transition duration-300">Terms</a>
<a href="#" class="text-gray-400 hover:text-white transition duration-300">Privacy</a>
<a href="#" class="text-gray-400 hover:text-white transition duration-300">Cookies</a>
</div>
</div>
</div>
</footer>
<!-- Back to Top Button -->
<button id="backToTop" class="fixed bottom-8 right-8 w-12 h-12 rounded-full gradient-bg text-white shadow-lg flex items-center justify-center opacity-0 invisible transition-all duration-300">
<i class="fas fa-arrow-up"></i>
</button>
<script>
// Smooth scrolling for navigation links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
// Back to top button
const backToTopButton = document.getElementById('backToTop');
window.addEventListener('scroll', () => {
if (window.pageYOffset > 300) {
backToTopButton.classList.remove('opacity-0', 'invisible');
backToTopButton.classList.add('opacity-100', 'visible');
} else {
backToTopButton.classList.remove('opacity-100', 'visible');
backToTopButton.classList.add('opacity-0', 'invisible');
}
});
backToTopButton.addEventListener('click', () => {
window.scrollTo({
top: 0,
behavior: 'smooth'
});
});
// Animation on scroll
const animateOnScroll = () => {
const elements = document.querySelectorAll('.feature-card, .card-hover');
elements.forEach(element => {
const elementPosition = element.getBoundingClientRect().top;
const screenPosition = window.innerHeight / 1.2;
if (elementPosition < screenPosition) {
element.style.opacity = '1';
element.style.transform = 'translateY(0)';
}
});
};
// Set initial state for animation
document.querySelectorAll('.feature-card, .card-hover').forEach(el => {
el.style.opacity = '0';
el.style.transform = 'translateY(20px)';
el.style.transition = 'all 0.6s ease';
});
window.addEventListener('load', animateOnScroll);
window.addEventListener('scroll', animateOnScroll);
</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=This-is-free-cmon/otherswork" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |