Spaces:
Running
Running
File size: 23,477 Bytes
5745c71 |
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 |
<!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>© 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> |