Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>QuantumVortex Unleashed - Next Generation Web Solutions</title> | |
| <link rel="icon" type="image/x-icon" href="/static/favicon.ico"> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> | |
| <script src="https://unpkg.com/feather-icons"></script> | |
| <script> | |
| tailwind.config = { | |
| theme: { | |
| extend: { | |
| colors: { | |
| primary: { | |
| 50: '#f0f9ff', | |
| 100: '#e0f2fe', | |
| 200: '#bae6fd', | |
| 300: '#7dd3fc', | |
| 400: '#38bdf8', | |
| 500: '#0ea5e9', | |
| 600: '#0284c7', | |
| 700: '#0369a1', | |
| 800: '#075985', | |
| 900: '#0c4a6e', | |
| }, | |
| secondary: { | |
| 50: '#fdf4ff', | |
| 100: '#fae8ff', | |
| 200: '#f5d0fe', | |
| 300: '#f0abfc', | |
| 400: '#e879f9', | |
| 500: '#d946ef', | |
| 600: '#c026d3', | |
| 700: '#a21caf', | |
| 800: '#86198f', | |
| 900: '#701a75', | |
| } | |
| } | |
| } | |
| } | |
| } | |
| </script> | |
| <style> | |
| @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap'); | |
| body { | |
| font-family: 'Inter', sans-serif; | |
| } | |
| .gradient-bg { | |
| background: linear-gradient(135deg, #0ea5e9 0%, #d946ef 100%); | |
| } | |
| .glass-effect { | |
| background: rgba(255, 255, 255, 0.1); | |
| backdrop-filter: blur(10px); | |
| border: 1px solid rgba(255, 255, 255, 0.2); | |
| } | |
| .hero-pattern { | |
| background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.15) 1px, transparent 0); | |
| background-size: 40px 40px; | |
| } | |
| </style> | |
| </head> | |
| <body class="bg-white text-gray-900"> | |
| <!-- Navigation --> | |
| <nav class="fixed w-full z-50 bg-white/80 backdrop-blur-md border-b border-gray-200"> | |
| <div class="container mx-auto px-6 py-4"> | |
| <div class="flex items-center justify-between"> | |
| <div class="flex items-center space-x-2"> | |
| <div class="w-8 h-8 bg-gradient-to-r from-primary-500 to-secondary-500 rounded-lg"></div> | |
| <span class="text-xl font-bold bg-gradient-to-r from-primary-600 to-secondary-600 bg-clip-text text-transparent">QuantumVortex</span> | |
| </div> | |
| <div class="hidden md:flex items-center space-x-8"> | |
| <a href="#features" class="text-gray-700 hover:text-primary-600 font-medium transition-colors">Features</a> | |
| <a href="#solutions" class="text-gray-700 hover:text-primary-600 font-medium transition-colors">Solutions</a> | |
| <a href="#pricing" class="text-gray-700 hover:text-primary-600 font-medium transition-colors">Pricing</a> | |
| <a href="#contact" class="text-gray-700 hover:text-primary-600 font-medium transition-colors">Contact</a> | |
| </div> | |
| <div class="flex items-center space-x-4"> | |
| <button class="hidden md:inline-block px-4 py-2 text-primary-600 font-medium hover:text-primary-700 transition-colors"> | |
| Sign In | |
| </button> | |
| <button class="px-6 py-2 bg-gradient-to-r from-primary-500 to-secondary-500 text-white rounded-lg font-medium hover:from-primary-600 hover:to-secondary-600 transition-all transform hover:-translate-y-0.5 shadow-lg hover:shadow-xl"> | |
| Get Started | |
| </button> | |
| <button class="md:hidden text-gray-700"> | |
| <i data-feather="menu"></i> | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </nav> | |
| <!-- Hero Section --> | |
| <section class="pt-32 pb-20 px-6 relative overflow-hidden"> | |
| <div class="absolute inset-0 hero-pattern opacity-5"></div> | |
| <div class="container mx-auto max-w-6xl"> | |
| <div class="text-center"> | |
| <div class="inline-flex items-center px-4 py-2 rounded-full bg-primary-50 text-primary-700 text-sm font-medium mb-8"> | |
| <span class="w-2 h-2 bg-primary-500 rounded-full mr-2"></span> | |
| Next Generation Web Solutions | |
| </div> | |
| <h1 class="text-5xl md:text-7xl font-bold mb-6 leading-tight"> | |
| Transform Your Digital | |
| <span class="bg-gradient-to-r from-primary-600 to-secondary-600 bg-clip-text text-transparent">Presence</span> | |
| </h1> | |
| <p class="text-xl md:text-2xl text-gray-600 mb-12 max-w-3xl mx-auto leading-relaxed"> | |
| Experience the future of web development with cutting-edge solutions that blend innovation, performance, and stunning design. | |
| </p> | |
| <div class="flex flex-col sm:flex-row gap-4 justify-center items-center"> | |
| <button class="px-8 py-4 bg-gradient-to-r from-primary-500 to-secondary-500 text-white rounded-xl font-semibold text-lg hover:from-primary-600 hover:to-secondary-600 transition-all transform hover:-translate-y-1 shadow-xl hover:shadow-2xl flex items-center"> | |
| <span>Start Building</span> | |
| <i data-feather="arrow-right" class="ml-2 w-5 h-5"></i> | |
| </button> | |
| <button class="px-8 py-4 border-2 border-gray-300 text-gray-700 rounded-xl font-semibold text-lg hover:border-primary-500 hover:text-primary-600 transition-all"> | |
| View Demo | |
| </button> | |
| </div> | |
| </div> | |
| <!-- Hero Visual --> | |
| <div class="mt-20 relative"> | |
| <div class="glass-effect rounded-3xl p-8 max-w-4xl mx-auto"> | |
| <div class="bg-gradient-to-br from-primary-50 to-secondary-50 rounded-2xl p-8 shadow-2xl"> | |
| <div class="grid grid-cols-1 md:grid-cols-3 gap-6"> | |
| <div class="bg-white rounded-xl p-6 shadow-lg border border-gray-100"> | |
| <div class="w-12 h-12 bg-primary-100 rounded-lg flex items-center justify-center mb-4"> | |
| <i data-feather="zap" class="text-primary-600 w-6 h-6"></i> | |
| </div> | |
| <h3 class="font-bold text-lg mb-2">Lightning Fast</h3> | |
| <p class="text-gray-600 text-sm">Optimized performance for instant loading</p> | |
| </div> | |
| <div class="bg-white rounded-xl p-6 shadow-lg border border-gray-100"> | |
| <div class="w-12 h-12 bg-secondary-100 rounded-lg flex items-center justify-center mb-4"> | |
| <i data-feather="shield" class="text-secondary-600 w-6 h-6"></i> | |
| </div> | |
| <h3 class="font-bold text-lg mb-2">Secure & Reliable</h3> | |
| <p class="text-gray-600 text-sm">Enterprise-grade security measures</p> | |
| </div> | |
| <div class="bg-white rounded-xl p-6 shadow-lg border border-gray-100"> | |
| <div class="w-12 h-12 bg-primary-100 rounded-lg flex items-center justify-center mb-4"> | |
| <i data-feather="trending-up" class="text-primary-600 w-6 h-6"></i> | |
| </div> | |
| <h3 class="font-bold text-lg mb-2">SEO Optimized</h3> | |
| <p class="text-gray-600 text-sm">Rank higher with built-in SEO tools</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Features Section --> | |
| <section id="features" class="py-20 px-6 bg-gray-50"> | |
| <div class="container mx-auto max-w-6xl"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-4xl md:text-5xl font-bold mb-6">Powerful Features</h2> | |
| <p class="text-xl text-gray-600 max-w-2xl mx-auto"> | |
| Discover the tools and capabilities that make QuantumVortex the ultimate choice for modern web development | |
| </p> | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> | |
| <!-- Feature 1 --> | |
| <div class="bg-white rounded-2xl p-8 shadow-lg hover:shadow-xl transition-all duration-300 border border-gray-100 hover:border-primary-200"> | |
| <div class="w-16 h-16 bg-gradient-to-r from-primary-500 to-secondary-500 rounded-2xl flex items-center justify-center mb-6"> | |
| <i data-feather="code" class="text-white w-8 h-8"></i> | |
| </div> | |
| <h3 class="text-2xl font-bold mb-4">Advanced Development</h3> | |
| <p class="text-gray-600 mb-6"> | |
| Build with modern frameworks and cutting-edge technologies for superior performance and scalability. | |
| </p> | |
| <ul class="space-y-3"> | |
| <li class="flex items-center text-gray-700"> | |
| <i data-feather="check" class="text-primary-500 w-5 h-5 mr-3"></i> | |
| React & Next.js Integration | |
| </li> | |
| <li class="flex items-center text-gray-700"> | |
| <i data-feather="check" class="text-primary-500 w-5 h-5 mr-3"></i> | |
| TypeScript Support | |
| </li> | |
| <li class="flex items-center text-gray-700"> | |
| <i data-feather="check" class="text-primary-500 w-5 h-5 mr-3"></i> | |
| API-First Architecture | |
| </li> | |
| </ul> | |
| </div> | |
| <!-- Feature 2 --> | |
| <div class="bg-white rounded-2xl p-8 shadow-lg hover:shadow-xl transition-all duration-300 border border-gray-100 hover:border-secondary-200"> | |
| <div class="w-16 h-16 bg-gradient-to-r from-secondary-500 to-primary-500 rounded-2xl flex items-center justify-center mb-6"> | |
| <i data-feather="layers" class="text-white w-8 h-8"></i> | |
| </div> | |
| <h3 class="text-2xl font-bold mb-4">Design System</h3> | |
| <p class="text-gray-600 mb-6"> | |
| Access a comprehensive design system with reusable components and consistent styling patterns. | |
| </p> | |
| <ul class="space-y-3"> | |
| <li class="flex items-center text-gray-700"> | |
| <i data-feather="check" class="text-secondary-500 w-5 h-5 mr-3"></i> | |
| Component Library | |
| </li> | |
| <li class="flex items-center text-gray-700"> | |
| <i data-feather="check" class="text-secondary-500 w-5 h-5 mr-3"></i> | |
| Dark/Light Themes | |
| </li> | |
| <li class="flex items-center text-gray-700"> | |
| <i data-feather="check" class="text-secondary-500 w-5 h-5 mr-3"></i> | |
| Responsive Design | |
| </li> | |
| </ul> | |
| </div> | |
| <!-- Feature 3 --> | |
| <div class="bg-white rounded-2xl p-8 shadow-lg hover:shadow-xl transition-all duration-300 border border-gray-100 hover:border-primary-200"> | |
| <div class="w-16 h-16 bg-gradient-to-r from-primary-500 to-secondary-500 rounded-2xl flex items-center justify-center mb-6"> | |
| <i data-feather="cloud" class="text-white w-8 h-8"></i> | |
| </div> | |
| <h3 class="text-2xl font-bold mb-4">Cloud Deployment</h3> | |
| <p class="text-gray-600 mb-6"> | |
| Seamless deployment to your preferred cloud platform with automated CI/CD pipelines. | |
| </p> | |
| <ul class="space-y-3"> | |
| <li class="flex items-center text-gray-700"> | |
| <i data-feather="check" class="text-primary-500 w-5 h-5 mr-3"></i> | |
| One-Click Deployment | |
| </li> | |
| <li class="flex items-center text-gray-700"> | |
| <i data-feather="check" class="text-primary-500 w-5 h-5 mr-3"></i> | |
| Auto Scaling | |
| </li> | |
| <li class="flex items-center text-gray-700"> | |
| <i data-feather="check" class="text-primary-500 w-5 h-5 mr-3"></i> | |
| Global CDN | |
| </li> | |
| </ul> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- CTA Section --> | |
| <section class="py-20 px-6 gradient-bg text-white relative overflow-hidden"> | |
| <div class="absolute inset-0 opacity-10"> | |
| <div class="absolute top-10 left-10 w-72 h-72 bg-white rounded-full blur-3xl"></div> | |
| <div class="absolute bottom-10 right-10 w-96 h-96 bg-secondary-300 rounded-full blur-3xl"></div> | |
| </div> | |
| <div class="container mx-auto max-w-4xl text-center relative z-10"> | |
| <h2 class="text-4xl md:text-5xl font-bold mb-6"> | |
| Ready to Transform Your Digital Experience? | |
| </h2> | |
| <p class="text-xl mb-8 opacity-90 max-w-2xl mx-auto"> | |
| Join thousands of developers and businesses already building the future with QuantumVortex. | |
| </p> | |
| <div class="flex flex-col sm:flex-row gap-4 justify-center"> | |
| <button class="px-8 py-4 bg-white text-primary-600 rounded-xl font-semibold text-lg hover:bg-gray-100 transition-all transform hover:-translate-y-1 shadow-2xl"> | |
| Start Free Trial | |
| </button> | |
| <button class="px-8 py-4 border-2 border-white text-white rounded-xl font-semibold text-lg hover:bg-white hover:text-primary-600 transition-all"> | |
| Schedule Demo | |
| </button> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Footer --> | |
| <footer class="bg-gray-900 text-white py-16 px-6"> | |
| <div class="container mx-auto max-w-6xl"> | |
| <div class="grid grid-cols-1 md:grid-cols-4 gap-8"> | |
| <div class="md:col-span-2"> | |
| <div class="flex items-center space-x-2 mb-6"> | |
| <div class="w-8 h-8 bg-gradient-to-r from-primary-500 to-secondary-500 rounded-lg"></div> | |
| <span class="text-xl font-bold">QuantumVortex</span> | |
| </div> | |
| <p class="text-gray-400 mb-6 max-w-md"> | |
| Building the future of web development with innovative solutions and cutting-edge technology. | |
| </p> | |
| <div class="flex space-x-4"> | |
| <a href="#" class="w-10 h-10 bg-gray-800 rounded-lg flex items-center justify-center hover:bg-primary-600 transition-colors"> | |
| <i data-feather="twitter" class="w-5 h-5"></i> | |
| </a> | |
| <a href="#" class="w-10 h-10 bg-gray-800 rounded-lg flex items-center justify-center hover:bg-primary-600 transition-colors"> | |
| <i data-feather="github" class="w-5 h-5"></i> | |
| </a> | |
| <a href="#" class="w-10 h-10 bg-gray-800 rounded-lg flex items-center justify-center hover:bg-primary-600 transition-colors"> | |
| <i data-feather="linkedin" class="w-5 h-5"></i> | |
| </a> | |
| </div> | |
| </div> | |
| <div> | |
| <h3 class="font-bold text-lg mb-4">Product</h3> | |
| <ul class="space-y-3"> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition-colors">Features</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition-colors">Solutions</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition-colors">Pricing</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition-colors">Documentation</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h3 class="font-bold text-lg mb-4">Company</h3> | |
| <ul class="space-y-3"> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition-colors">About</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition-colors">Blog</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition-colors">Careers</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition-col | |
| </body> | |
| </html> |