Spaces:
Running
Running
<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> |