simple-landing-page / index.html
NeuralDev's picture
improve it - Initial Deployment
5745c71 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>QuantumLeap - Next-Gen Productivity</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/lucide@latest/dist/umd/lucide.js"></script>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
<style>
* {
font-family: 'Inter', sans-serif;
}
.gradient-text {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.glass-effect {
backdrop-filter: blur(20px);
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.2);
}
.floating-card {
transition: all 0.3s ease;
transform: translateY(0);
}
.floating-card:hover {
transform: translateY(-8px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.pulse-animation {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.05); }
100% { transform: scale(1); }
}
.typing-effect {
overflow: hidden;
border-right: 3px solid #667eea;
white-space: nowrap;
animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}
@keyframes typing {
from { width: 0 }
to { width: 100% }
}
@keyframes blink-caret {
from, to { border-color: transparent }
50% { border-color: #667eea }
}
.nav-link {
position: relative;
transition: all 0.3s ease;
}
.nav-link::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background: linear-gradient(90deg, #667eea, #764ba2);
transition: width 0.3s ease;
}
.nav-link:hover::after {
width: 100%;
}
.hero-gradient {
background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}
.feature-icon {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.testimonial-card {
transition: transform 0.3s ease;
}
.testimonial-card:hover {
transform: scale(1.02);
}
</style>
</head>
<body class="bg-gray-50">
<!-- Navigation -->
<nav class="fixed top-0 w-full z-50 glass-effect">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between items-center h-16">
<div class="flex items-center space-x-2">
<div class="w-8 h-8 bg-gradient-to-r from-indigo-500 to-purple-600 rounded-lg flex items-center justify-center">
<i data-lucide="zap" class="text-white w-5 h-5"></i>
</div>
<span class="text-xl font-bold gradient-text">QuantumLeap</span>
</div>
<div class="hidden md:flex items-center space-x-8">
<a href="#features" class="nav-link text-gray-700 hover:text-indigo-600 font-medium">Features</a>
<a href="#pricing" class="nav-link text-gray-700 hover:text-indigo-600 font-medium">Pricing</a>
<a href="#testimonials" class="nav-link text-gray-700 hover:text-indigo-600 font-medium">Testimonials</a>
<button class="bg-gradient-to-r from-indigo-500 to-purple-600 text-white px-6 py-2 rounded-full hover:shadow-lg transition-all duration-300">
Get Started
</button>
</div>
<button class="md:hidden" id="mobile-menu-btn">
<i data-lucide="menu" class="w-6 h-6 text-gray-700"></i>
</button>
</div>
</div>
<!-- Mobile Menu -->
<div class="md:hidden hidden bg-white shadow-lg" id="mobile-menu">
<div class="px-4 py-2 space-y-2">
<a href="#features" class="block py-2 text-gray-700 hover:text-indigo-600">Features</a>
<a href="#pricing" class="block py-2 text-gray-700 hover:text-indigo-600">Pricing</a>
<a href="#testimonials" class="block py-2 text-gray-700 hover:text-indigo-600">Testimonials</a>
<button class="w-full bg-gradient-to-r from-indigo-500 to-purple-600 text-white px-4 py-2 rounded-full">
Get Started
</button>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="pt-20 pb-20 hero-gradient">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center">
<h1 class="text-4xl md:text-6xl font-bold text-gray-900 mb-6">
Build Something <span class="gradient-text">Extraordinary</span>
</h1>
<p class="text-xl md:text-2xl text-gray-600 mb-8 max-w-3xl mx-auto">
The future of <span class="typing-effect inline-block">productivity is here</span>
</p>
<div class="flex flex-col sm:flex-row gap-4 justify-center">
<button class="bg-gradient-to-r from-indigo-500 to-purple-600 text-white px-8 py-4 rounded-full text-lg font-semibold hover:shadow-xl transition-all duration-300 pulse-animation">
Get Started Free
</button>
<button class="border-2 border-gray-300 text-gray-700 px-8 py-4 rounded-full text-lg font-semibold hover:border-indigo-500 hover:text-indigo-600 transition-all duration-300">
Watch Demo
</button>
</div>
</div>
<!-- Hero Image -->
<div class="mt-16 relative">
<div class="floating-card max-w-4xl mx-auto">
<img src="https://images.unsplash.com/photo-1551434678-e076c223a692?w=1200&h=600&fit=crop"
alt="Dashboard"
class="rounded-2xl shadow-2xl w-full h-96 object-cover">
</div>
</div>
</div>
</section>
<!-- Features Section -->
<section id="features" 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 md:text-5xl font-bold text-gray-900 mb-4">
Powerful <span class="gradient-text">Features</span>
</h2>
<p class="text-xl text-gray-600 max-w-2xl mx-auto">
Everything you need to succeed, all in one place
</p>
</div>
<div class="grid md:grid-cols-3 gap-8">
<!-- Feature 1 -->
<div class="floating-card bg-white p-8 rounded-2xl shadow-lg">
<div class="w-16 h-16 bg-gradient-to-r from-indigo-500 to-purple-600 rounded-xl flex items-center justify-center mb-4">
<i data-lucide="rocket" class="text-white w-8 h-8"></i>
</div>
<h3 class="text-2xl font-bold text-gray-900 mb-3">Lightning Fast</h3>
<p class="text-gray-600">
Experience blazing fast performance with our optimized infrastructure
</p>
<a href="#" class="text-indigo-600 font-semibold mt-4 inline-block hover:text-indigo-700">
Learn more →
</a>
</div>
<!-- Feature 2 -->
<div class="floating-card bg-white p-8 rounded-2xl shadow-lg">
<div class="w-16 h-16 bg-gradient-to-r from-green-500 to-teal-600 rounded-xl flex items-center justify-center mb-4">
<i data-lucide="shield" class="text-white w-8 h-8"></i>
</div>
<h3 class="text-2xl font-bold text-gray-900 mb-3">Secure by Design</h3>
<p class="text-gray-600">
Enterprise-grade security that keeps your data safe and private
</p>
<a href="#" class="text-indigo-600 font-semibold mt-4 inline-block hover:text-indigo-700">
Learn more →
</a>
</div>
<!-- Feature 3 -->
<div class="floating-card bg-white p-8 rounded-2xl shadow-lg">
<div class="w-16 h-16 bg-gradient-to-r from-pink-500 to-red-600 rounded-xl flex items-center justify-center mb-4">
<i data-lucide="users" class="text-white w-8 h-8"></i>
</div>
<h3 class="text-2xl font-bold text-gray-900 mb-3">Team Collaboration</h3>
<p class="text-gray-600">
Work together seamlessly with real-time collaboration features
</p>
<a href="#" class="text-indigo-600 font-semibold mt-4 inline-block hover:text-indigo-700">
Learn more →
</a>
</div>
</div>
</div>
</section>
<!-- Pricing Section -->
<section id="pricing" 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 md:text-5xl font-bold text-gray-900 mb-4">
Simple <span class="gradient-text">Pricing</span>
</h2>
<p class="text-xl text-gray-600 max-w-2xl mx-auto">
Choose the perfect plan for your needs
</p>
</div>
<div class="grid md:grid-cols-3 gap-8 max-w-5xl mx-auto">
<!-- Starter Plan -->
<div class="floating-card bg-white p-8 rounded-2xl shadow-lg text-center">
<h3 class="text-2xl font-bold text-gray-900 mb-4">Starter</h3>
<div class="text-4xl font-bold text-gray-900 mb-6">
$9<span class="text-lg text-gray-600">/month</span>
</div>
<ul class="text-gray-600 space-y-3 mb-8">
<li>✓ Up to 10 projects</li>
<li>✓ Basic analytics</li>
<li>✓ Email support</li>
<li>✓ 5GB storage</li>
</ul>
<button class="w-full border-2 border-indigo-500 text-indigo-600 py-3 rounded-full font-semibold hover:bg-indigo-500 hover:text-white transition-all duration-300">
Get Started
</button>
</div>
<!-- Professional Plan -->
<div class="floating-card bg-gradient-to-r from-indigo-500 to-purple-600 p-8 rounded-2xl shadow-lg text-center text-white transform scale-105">
<div class="bg-white text-indigo-600 px-3 py-1 rounded-full text-sm font-semibold inline-block mb-4">
MOST POPULAR
</div>
<h3 class="text-2xl font-bold mb-4">Professional</h3>
<div class="text-4xl font-bold mb-6">
$29<span class="text-lg opacity-75">/month</span>
</div>
<ul class="space-y-3 mb-8 opacity-90">
<li>✓ Unlimited projects</li>
<li>✓ Advanced analytics</li>
<li>✓ Priority support</li>
<li>✓ 100GB storage</li>
<li>✓ Team collaboration</li>
</ul>
<button class="w-full bg-white text-indigo-600 py-3 rounded-full font-semibold hover:shadow-lg transition-all duration-300">
Get Started
</button>
</div>
<!-- Enterprise Plan -->
<div class="floating-card bg-white p-8 rounded-2xl shadow-lg text-center">
<h3 class="text-2xl font-bold text-gray-900 mb-4">Enterprise</h3>
<div class="text-4xl font-bold text-gray-900 mb-6">
$99<span class="text-lg text-gray-600">/month</span>
</div>
<ul class="text-gray-600 space-y-3 mb-8">
<li>✓ Everything in Pro</li>
<li>✓ Custom integrations</li>
<li>✓ Dedicated support</li>
<li>✓ Unlimited storage</li>
<li>✓ Advanced security</li>
</ul>
<button class="w-full border-2 border-indigo-500 text-indigo-600 py-3 rounded-full font-semibold hover:bg-indigo-500 hover:text-white transition-all duration-300">
Contact Sales
</button>
</div>
</div>
</div>
</section>
<!-- Testimonials Section -->
<section id="testimonials" 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 md:text-5xl font-bold text-gray-900 mb-4">
What Our <span class="gradient-text">Customers Say</span>
</h2>
<p class="text-xl text-gray-600 max-w-2xl mx-auto">
Don't just take our word for it
</p>
</div>
<div class="grid md:grid-cols-3 gap-8">
<!-- Testimonial 1 -->
<div class="testimonial-card bg-gray-50 p-6 rounded-xl">
<div class="flex items-center mb-4">
<img src="https://images.unsplash.com/photo-1494790108755-2616b332-3fc?w=60&h=60&fit=crop&crop=face"
alt="Sarah"
class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-semibold text-gray-900">Sarah Johnson</h4>
<p class="text-sm text-gray-600">CEO, TechCorp</p>
</div>
</div>
<p class="text-gray-700 italic">
"QuantumLeap has transformed how we work. The productivity gains have been incredible."
</p>
<div class="flex text-yellow-400 mt-4">
<i data-lucide="star" class="w-4 h-4 fill-current"></i>
<i data-lucide="star" class="w-4 h-4 fill-current"></i>
<i data-lucide="star" class="w-4 h-4 fill-current"></i>
<i data-lucide="star" class="w-4 h-4 fill-current"></i>
<i data-lucide="star" class="w-4 h-4 fill-current"></i>
</div>
</div>
<!-- Testimonial 2 -->
<div class="testimonial-card bg-gray-50 p-6 rounded-xl">
<div class="flex items-center mb-4">
<img src="https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=60&h=60&fit=crop&crop=face"
alt="Mike"
class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-semibold text-gray-900">Mike Chen</h4>
<p class="text-sm text-gray-600">CTO, StartupX</p>
</div>
</div>
<p class="text-gray-700 italic">
"The best investment we've made. Our team's efficiency has improved by 300%."
</p>
<div class="flex text-yellow-400 mt-4">
<i data-lucide="star" class="w-4 h-4 fill-current"></i>
<i data-lucide="star" class="w-4 h-4 fill-current"></i>
<i data-lucide="star" class="w-4 h-4 fill-current"></i>
<i data-lucide="star" class="w-4 h-4 fill-current"></i>
<i data-lucide="star" class="w-4 h-4 fill-current"></i>
</div>
</div>
<!-- Testimonial 3 -->
<div class="testimonial-card bg-gray-50 p-6 rounded-xl">
<div class="flex items-center mb-4">
<img src="https://images.unsplash.com/photo-1438761681033-6461ffad8d80?w=60&h=60&fit=crop&crop=face"
alt="Emma"
class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-semibold text-gray-900">Emma Davis</h4>
<p class="text-sm text-gray-600">Product Manager, Innovate</p>
</div>
</div>
<p class="text-gray-700 italic">
"Intuitive, powerful, and reliable. Exactly what we needed to scale our operations."
</p>
<div class="flex text-yellow-400 mt-4">
<i data-lucide="star" class="w-4 h-4 fill-current"></i>
<i data-lucide="star" class="w-4 h-4 fill-current"></i>
<i data-lucide="star" class="w-4 h-4 fill-current"></i>
<i data-lucide="star" class="w-4 h-4 fill-current"></i>
<i data-lucide="star" class="w-4 h-4 fill-current"></i>
</div>
</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 md:grid-cols-4 gap-8">
<div>
<div class="flex items-center space-x-2 mb-4">
<div class="w-8 h-8 bg-gradient-to-r from-indigo-500 to-purple-600 rounded-lg flex items-center justify-center">
<i data-lucide="zap" class="text-white w-5 h-5"></i>
</div>
<span class="text-xl font-bold">QuantumLeap</span>
</div>
<p class="text-gray-400">
Building the future of productivity, one feature at a time.
</p>
</div>
<div>
<h4 class="font-semibold mb-4">Product</h4>
<ul class="space-y-2 text-gray-400">
<li><a href="#" class="hover:text-white transition-colors">Features</a></li>
<li><a href="#" class="hover:text-white transition-colors">Pricing</a></li>
<li><a href="#" class="hover:text-white transition-colors">API</a></li>
</ul>
</div>
<div>
<h4 class="font-semibold mb-4">Support</h4>
<ul class="space-y-2 text-gray-400">
<li><a href="#" class="hover:text-white transition-colors">Help Center</a></li>
<li><a href="#" class="hover:text-white transition-colors">Contact</a></li>
<li><a href="#" class="hover:text-white transition-colors">Status</a></li>
</ul>
</div>
<div>
<h4 class="font-semibold mb-4">Connect</h4>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white transition-colors">
<i data-lucide="twitter" class="w-5 h-5"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition-colors">
<i data-lucide="linkedin" class="w-5 h-5"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition-colors">
<i data-lucide="github" class="w-5 h-5"></i>
</a>
</div>
</div>
</div>
<div class="border-t border-gray-800 mt-8 pt-8 text-center text-gray-400">
<p>&copy; 2024 QuantumLeap. All rights reserved.</p>
</div>
</div>
</footer>
<script>
// Initialize Lucide icons
lucide.createIcons();
// Mobile menu toggle
const mobileMenuBtn = document.getElementById('mobile-menu-btn');
const mobileMenu = document.getElementById('mobile-menu');
mobileMenuBtn.addEventListener('click', () => {
mobileMenu.classList.toggle('hidden');
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const target = document.querySelector(this.getAttribute('href'));
if (target) {
target.scrollIntoView({ behavior: 'smooth' });
}
});
});
// Add scroll effect to navbar
window.addEventListener('scroll', () => {
const nav = document.querySelector('nav');
if (window.scrollY > 100) {
nav.classList.add('shadow-lg');
} else {
nav.classList.remove('shadow-lg');
}
});
</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=NeuralDev/simple-landing-page" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>