Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>SuperNova - Elite Programming Collective</title> | |
| <meta name="description" content="SuperNova is an elite programming collective pushing the boundaries of innovation with cutting-edge solutions and transformative digital experiences."> | |
| <meta name="keywords" content="programming, development, coding, software, web development, mobile apps, SuperNova"> | |
| <meta name="author" content="SuperNova Team"> | |
| <link rel="icon" type="image/x-icon" href="/static/favicon.ico"> | |
| <!-- Open Graph --> | |
| <meta property="og:title" content="SuperNova - Elite Programming Collective"> | |
| <meta property="og:description" content="Pushing the boundaries of innovation with cutting-edge solutions"> | |
| <meta property="og:type" content="website"> | |
| <meta property="og:image" content="http://static.photos/technology/1200x630/42"> | |
| <!-- Tailwind CSS --> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <!-- Feather Icons --> | |
| <script src="https://unpkg.com/feather-icons"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> | |
| <!-- Three.js for 3D elements --> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/three@0.128.0/examples/js/controls/OrbitControls.js"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/three@0.128.0/examples/js/loaders/GLTFLoader.js"></script> | |
| <!-- GSAP for advanced animations --> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.11.4/gsap.min.js"></script> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.11.4/ScrollTrigger.min.js"></script> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.11.4/ScrollToPlugin.min.js"></script> | |
| <!-- Custom styling --> | |
| <style> | |
| @import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap'); | |
| :root { | |
| --primary: #6366f1; | |
| --secondary: #f59e0b; | |
| --dark: #0f172a; | |
| --light: #f8fafc; | |
| } | |
| body { | |
| font-family: 'Space Grotesk', sans-serif; | |
| scroll-behavior: smooth; | |
| } | |
| .gradient-bg { | |
| background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); | |
| } | |
| .text-gradient { | |
| background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); | |
| -webkit-background-clip: text; | |
| -webkit-text-fill-color: transparent; | |
| background-clip: text; | |
| } | |
| .card-hover { | |
| transition: all 0.3s ease; | |
| } | |
| .card-hover:hover { | |
| transform: translateY(-10px); | |
| box-shadow: 0 20px 40px rgba(0,0,0,0.1); | |
| } | |
| .parallax { | |
| background-attachment: fixed; | |
| background-position: center; | |
| background-repeat: no-repeat; | |
| background-size: cover; | |
| } | |
| .floating { | |
| animation: floating 3s ease-in-out infinite; | |
| } | |
| @keyframes floating { | |
| 0% { transform: translate(0, 0px); } | |
| 50% { transform: translate(0, -15px); } | |
| 100% { transform: translate(0, -0px); } | |
| } | |
| .typewriter { | |
| overflow: hidden; | |
| border-right: .15em solid var(--primary); | |
| white-space: nowrap; | |
| margin: 0 auto; | |
| animation: typing 3.5s steps(40, end), blink-caret .75s step-end infinite; | |
| } | |
| @keyframes typing { | |
| from { width: 0 } | |
| to { width: 100% } | |
| } | |
| @keyframes blink-caret { | |
| from, to { border-color: transparent } | |
| 50% { border-color: var(--primary) } | |
| } | |
| #three-container { | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| width: 100%; | |
| height: 100%; | |
| z-index: -1; | |
| } | |
| .particle-network { | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| width: 100%; | |
| height: 100%; | |
| z-index: -1; | |
| } | |
| .floating-3d { | |
| transform-style: preserve-3d; | |
| animation: float3d 6s ease-in-out infinite; | |
| } | |
| @keyframes float3d { | |
| 0%, 100% { transform: translate3d(0, 0, 0) rotate3d(1, 1, 1, 0deg); } | |
| 50% { transform: translate3d(0, -20px, 0) rotate3d(1, 1, 1, 5deg); } | |
| } | |
| .neon-glow { | |
| box-shadow: 0 0 10px #6366f1, 0 0 20px #6366f1, 0 0 30px #6366f1; | |
| } | |
| .hologram-effect { | |
| background: linear-gradient(45deg, transparent 30%, rgba(99, 102, 241, 0.1), rgba(245, 158, 11, 0.1); | |
| backdrop-filter: blur(10px); | |
| border: 1px solid rgba(255, 255, 255, 0.2); | |
| position: relative; | |
| overflow: hidden; | |
| } | |
| .hologram-effect::before { | |
| content: ''; | |
| position: absolute; | |
| top: -50%; | |
| left: -50%; | |
| width: 200%; | |
| height: 200%; | |
| background: conic-gradient(from 0deg, transparent, rgba(99, 102, 241, 0.5), transparent 70%); | |
| animation: hologram 3s linear infinite; | |
| } | |
| @keyframes hologram { | |
| 0% { transform: rotate(0deg); } | |
| 100% { transform: rotate(360deg); } | |
| } | |
| .cyber-grid { | |
| background-image: | |
| linear-gradient(rgba(99, 102, 241, 0.1) 1px, transparent 1px), | |
| linear-gradient(90deg, rgba(99, 102, 241, 0.1) 1px, transparent 1px); | |
| background-size: 50px 50px; | |
| } | |
| .matrix-rain { | |
| position: relative; | |
| overflow: hidden; | |
| } | |
| .matrix-rain::after { | |
| content: ''; | |
| position: absolute; | |
| top: -100%; | |
| left: 0; | |
| width: 100%; | |
| height: 100%; | |
| background: linear-gradient(transparent 70%, rgba(99, 102, 241, 0.3); | |
| animation: matrixFall 2s linear infinite; | |
| } | |
| @keyframes matrixFall { | |
| 0% { transform: translateY(-100%); } | |
| 100% { transform: translateY(100%); } | |
| } | |
| .section-divider { | |
| height: 100px; | |
| background: linear-gradient(to right bottom, var(--primary) 49%, var(--secondary) 51%); | |
| clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 50px)); | |
| } | |
| .pulse-ring { | |
| animation: pulse 2s infinite; | |
| } | |
| @keyframes pulse { | |
| 0% { | |
| transform: scale(0.8); | |
| opacity: 1; | |
| } | |
| 70% { | |
| transform: scale(1); | |
| opacity: 0.7; | |
| } | |
| 100% { | |
| transform: scale(0.8); | |
| opacity: 1; | |
| } | |
| } | |
| </style> | |
| </head> | |
| <body class="bg-gray-50 text-gray-800"> | |
| <!-- Navigation --> | |
| <nav class="fixed w-full z-50 bg-white/90 backdrop-blur-md shadow-sm"> | |
| <div class="container mx-auto px-4 py-4"> | |
| <div class="flex justify-between items-center"> | |
| <div class="flex items-center space-x-2"> | |
| <div class="w-10 h-10 rounded-full gradient-bg flex items-center justify-center"> | |
| <i data-feather="star" class="text-white"></i> | |
| </div> | |
| <span class="text-xl font-bold text-gradient">SuperNova</span> | |
| </div> | |
| <div class="hidden md:flex space-x-8"> | |
| <a href="#home" class="font-medium hover:text-indigo-600 transition-colors">Home</a> | |
| <a href="#about" class="font-medium hover:text-indigo-600 transition-colors">About</a> | |
| <a href="#services" class="font-medium hover:text-indigo-600 transition-colors">Services</a> | |
| <a href="#team" class="font-medium hover:text-indigo-600 transition-colors">Team</a> | |
| <a href="#projects" class="font-medium hover:text-indigo-600 transition-colors">Projects</a> | |
| <a href="#showcase" class="font-medium hover:text-indigo-600 transition-colors">3D Showcase</a> | |
| <a href="#contact" class="font-medium hover:text-indigo-600 transition-colors">Contact</a> | |
| </div> | |
| <button class="md:hidden"> | |
| <i data-feather="menu"></i> | |
| </button> | |
| </div> | |
| </div> | |
| </nav> | |
| <!-- Hero Section with 3D Background --> | |
| <section id="home" class="relative min-h-screen flex items-center justify-center overflow-hidden"> | |
| <div id="three-container"></div> | |
| <div class="particle-network"></div> | |
| <div class="container mx-auto px-4 text-center z-10"> | |
| <h1 class="text-5xl md:text-7xl font-bold mb-6 floating-3d"> | |
| <span class="text-gradient neon-glow">SuperNova</span> | |
| </h1> | |
| <p class="text-xl md:text-2xl mb-8 max-w-3xl mx-auto text-gray-600"> | |
| We transform complex ideas into <span class="font-semibold text-indigo-600">stellar digital experiences</span> that push the boundaries of innovation | |
| </p> | |
| <div class="typewriter text-xl md:text-2xl font-mono text-gray-700 mb-10"> | |
| Elite Programming Collective | |
| </div> | |
| <div class="flex flex-col sm:flex-row gap-4 justify-center"> | |
| <button class="px-8 py-3 bg-indigo-600 text-white rounded-full font-medium hover:bg-indigo-700 transition-colors shadow-lg neon-glow"> | |
| Explore Our Work | |
| </button> | |
| <button class="px-8 py-3 border-2 border-indigo-600 text-indigo-600 rounded-full font-medium hover:bg-indigo-50 transition-colors"> | |
| Meet The Team | |
| </button> | |
| </div> | |
| </div> | |
| <!-- Interactive 3D Elements --> | |
| <div class="absolute top-20 right-10 w-32 h-32 floating-3d"> | |
| <div class="w-full h-full bg-gradient-to-r from-indigo-500 to-purple-600 rounded-full flex items-center justify-center neon-glow"> | |
| <i data-feather="cpu" class="text-white text-2xl"></i> | |
| </div> | |
| </div> | |
| <div class="absolute bottom-32 left-10 w-24 h-24 floating-3d" style="animation-delay: 1s"> | |
| <div class="w-full h-full bg-gradient-to-r from-amber-500 to-orange-600 rounded-full flex items-center justify-center neon-glow"> | |
| <i data-feather="zap" class="text-white text-xl"></i> | |
| </div> | |
| </div> | |
| <div class="absolute bottom-10 left-1/2 transform -translate-x-1/2"> | |
| <div class="floating"> | |
| <i data-feather="chevron-down" class="text-gray-400"></i> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Interactive 3D Showcase Section --> | |
| <section id="showcase" class="py-20 bg-gradient-to-br from-gray-900 via-purple-900 to-indigo-900 text-white relative overflow-hidden"> | |
| <div class="cyber-grid absolute inset-0"></div> | |
| <div class="container mx-auto px-4 relative z-10"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-4xl font-bold mb-4">3D Interactive Showcase</h2> | |
| <p class="text-xl max-w-2xl mx-auto">Experience our capabilities through immersive 3D demonstrations</p> | |
| </div> | |
| <div class="max-w-6xl mx-auto"> | |
| <div class="grid md:grid-cols-2 gap-12 items-center"> | |
| <div class="hologram-effect rounded-2xl p-8"> | |
| <div id="showcase-container" class="w-full h-96 bg-black/30 rounded-xl flex items-center justify-center"> | |
| <div class="text-center"> | |
| <i data-feather="cube" class="w-16 h-16 mx-auto mb-4 text-indigo-400"></i> | |
| <h3 class="text-2xl font-bold mb-4">Interactive 3D Models</h3> | |
| <p class="text-gray-300 mb-6">Drag to rotate, scroll to zoom</h3> | |
| <p class="text-sm text-gray-400">Powered by Three.js</p> | |
| </div> | |
| </div> | |
| <div> | |
| <h3 class="text-3xl font-bold mb-6">Real-time 3D Visualization</h3> | |
| <p class="text-lg text-gray-300 mb-6"> | |
| Explore our projects in stunning 3D detail. Each model showcases the technical excellence and creative vision that defines SuperNova. | |
| </p> | |
| <div class="grid grid-cols-2 gap-4"> | |
| <div class="bg-white/10 rounded-lg p-4 backdrop-blur-sm"> | |
| <h4 class="font-bold text-lg mb-3">Features:</h4> | |
| <ul class="space-y-2 text-gray-300"> | |
| <li class="flex items-center"> | |
| <i data-feather="rotate-cw" class="w-4 h-4 mr-2 text-indigo-400"></i> | |
| <span>360° Product Views</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i data-feather="zoom-in" class="w-4 h-4 mr-2 text-amber-400"></i> | |
| <span>Interactive Prototypes</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i data-feather="layers" class="w-4 h-4 mr-2 text-green-400"></i> | |
| <span>Real-time Animations</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i data-feather="code" class="w-4 h-4 mr-2 text-purple-400"></i> | |
| <span>WebGL Powered</span> | |
| </li> | |
| </ul> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="grid md:grid-cols-3 gap-6 mt-12"> | |
| <div class="bg-white/5 rounded-xl p-6 backdrop-blur-sm border border-white/10"> | |
| <div class="w-12 h-12 rounded-full bg-indigo-500/20 flex items-center justify-center mr-4"> | |
| <i data-feather="eye" class="text-indigo-400"></i> | |
| <h4 class="font-bold mt-3">Architecture Visualization</h4> | |
| <p class="text-sm text-gray-400 mt-2">3D building models with interactive elements</p> | |
| </div> | |
| <div class="bg-white/5 rounded-xl p-6 backdrop-blur-sm border border-white/10"> | |
| <div class="w-12 h-12 rounded-full bg-amber-500/20 flex items-center justify-center mr-4"> | |
| <i data-feather="box" class="text-amber-400"></i> | |
| <h4 class="font-bold mt-3">Product Design</h4> | |
| <p class="text-sm text-gray-400 mt-2">Detailed 3D product showcases</p> | |
| </div> | |
| <div class="bg-white/5 rounded-xl p-6 backdrop-blur-sm border border-white/10"> | |
| <div class="w-12 h-12 rounded-full bg-green-500/20 flex items-center justify-center mr-4"> | |
| <i data-feather="globe" class="text-green-400"></i> | |
| <h4 class="font-bold mt-3">Data Visualization</h4> | |
| <p class="text-sm text-gray-400 mt-2">Interactive data in 3D space</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- About Section --> | |
| <section id="about" class="py-20 bg-white"> | |
| <div class="container mx-auto px-4"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-4xl font-bold mb-4">About SuperNova</h2> | |
| <div class="w-24 h-1 gradient-bg mx-auto rounded-full"></div> | |
| </div> | |
| <div class="grid md:grid-cols-2 gap-12 items-center"> | |
| <div> | |
| <h3 class="text-3xl font-bold mb-6">We Are Visionaries</h3> | |
| <p class="text-lg text-gray-600 mb-6"> | |
| SuperNova was born from a simple idea: that technology should be beautiful, intuitive, and powerful. Our team of elite developers, designers, and innovators work together to create digital solutions that don't just meet expectations—they redefine them. | |
| </p> | |
| <p class="text-lg text-gray-600 mb-8"> | |
| With expertise spanning across web development, mobile applications, AI integration, and blockchain technology, we're equipped to tackle the most complex challenges and deliver solutions that propel businesses into the future. | |
| </p> | |
| <div class="grid grid-cols-2 gap-6"> | |
| <div class="flex items-center"> | |
| <div class="w-12 h-12 rounded-full bg-indigo-100 flex items-center justify-center mr-4"> | |
| <i data-feather="code" class="text-indigo-600"></i> | |
| </div> | |
| <div> | |
| <h4 class="font-bold">Clean Code</h4> | |
| <p class="text-sm text-gray-500">Meticulously crafted</p> | |
| </div> | |
| </div> | |
| <div class="flex items-center"> | |
| <div class="w-12 h-12 rounded-full bg-amber-100 flex items-center justify-center mr-4"> | |
| <i data-feather="zap" class="text-amber-600"></i> | |
| </div> | |
| <div> | |
| <h4 class="font-bold">Lightning Fast</h4> | |
| <p class="text-sm text-gray-500">Optimized performance</p> | |
| </div> | |
| </div> | |
| <div class="flex items-center"> | |
| <div class="w-12 h-12 rounded-full bg-green-100 flex items-center justify-center mr-4"> | |
| <i data-feather="shield" class="text-green-600"></i> | |
| </div> | |
| <div> | |
| <h4 class="font-bold">Secure</h4> | |
| <p class="text-sm text-gray-500">Enterprise-grade security</p> | |
| </div> | |
| </div> | |
| <div class="flex items-center"> | |
| <div class="w-12 h-12 rounded-full bg-purple-100 flex items-center justify-center mr-4"> | |
| <i data-feather="trending-up" class="text-purple-600"></i> | |
| </div> | |
| <div> | |
| <h4 class="font-bold">Scalable</h4> | |
| <p class="text-sm text-gray-500">Grows with your business</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="relative"> | |
| <div class="bg-gradient-to-br from-indigo-500 to-amber-500 rounded-2xl p-1"> | |
| <div class="bg-white rounded-xl p-6 h-full"> | |
| <div class="grid grid-cols-2 gap-4"> | |
| <div class="bg-indigo-50 rounded-lg p-4 text-center card-hover"> | |
| <div class="text-4xl font-bold text-indigo-600 mb-2">50+</div> | |
| <div class="text-gray-600">Projects Completed</div> | |
| </div> | |
| <div class="bg-amber-50 rounded-lg p-4 text-center card-hover"> | |
| <div class="text-4xl font-bold text-amber-600 mb-2">15+</div> | |
| <div class="text-gray-600">Team Members</div> | |
| </div> | |
| <div class="bg-green-50 rounded-lg p-4 text-center card-hover"> | |
| <div class="text-4xl font-bold text-green-600 mb-2">98%</div> | |
| <div class="text-gray-600">Client Satisfaction</div> | |
| </div> | |
| <div class="bg-purple-50 rounded-lg p-4 text-center card-hover"> | |
| <div class="text-4xl font-bold text-purple-600 mb-2">5</div> | |
| <div class="text-gray-600">Years Experience</div> | |
| </div> | |
| </div> | |
| <div class="mt-6 bg-gray-50 rounded-lg p-4"> | |
| <div class="flex items-start"> | |
| <div class="w-10 h-10 rounded-full bg-indigo-100 flex items-center justify-center mr-3 mt-1"> | |
| <i data-feather="quote" class="text-indigo-600"></i> | |
| </div> | |
| <div> | |
| <p class="text-gray-600 italic">"Working with SuperNova transformed our digital presence. Their attention to detail and innovative approach exceeded all expectations."</p> | |
| <p class="text-sm font-medium mt-2">— Sarah Johnson, TechCorp CEO</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Floating elements --> | |
| <div class="absolute -top-4 -right-4 w-8 h-8 rounded-full bg-indigo-500 pulse-ring"></div> | |
| <div class="absolute -bottom-4 -left-4 w-6 h-6 rounded-full bg-amber-500 pulse-ring" style="animation-delay: 0.5s"></div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Services Section with 3D Icons --> | |
| <section id="services" class="py-20 bg-gradient-to-tr from-indigo-50 via-white to-amber-50"> | |
| <div class="section-divider"></div> | |
| <div class="container mx-auto px-4 -mt-20"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-4xl font-bold mb-4">Our Services</h2> | |
| <p class="text-xl text-gray-600 max-w-2xl mx-auto">We offer a comprehensive suite of development services tailored to your unique needs</p> | |
| </div> | |
| <div class="grid md:grid-cols-3 gap-8"> | |
| <!-- Service 1 --> | |
| <div class="bg-white/80 backdrop-blur-sm rounded-2xl p-8 shadow-xl card-hover floating-3d"> | |
| <div class="w-20 h-20 rounded-full bg-gradient-to-r from-indigo-500 to-purple-600 flex items-center justify-center mb-6 neon-glow"> | |
| <i data-feather="globe" class="text-white text-3xl"></i> | |
| </div> | |
| <h3 class="text-2xl font-bold mb-4">Web Development</h3> | |
| <p class="text-gray-600 mb-6">From responsive websites to complex web applications, we build digital experiences that engage users and drive results.</p> | |
| <ul class="space-y-2 text-gray-600"> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="text-green-500 mr-2 w-4 h-4"></i> | |
| <span>Custom Web Applications</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="text-green-500 mr-2 w-4 h-4"></i> | |
| <span>E-commerce Solutions</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="text-green-500 mr-2 w-4 h-4"></i> | |
| <span>Progressive Web Apps</span> | |
| </li> | |
| </ul> | |
| </div> | |
| <!-- Service 2 --> | |
| <div class="bg-white/80 backdrop-blur-sm rounded-2xl p-8 shadow-xl card-hover floating-3d" style="animation-delay: 0.5s"> | |
| <div class="w-20 h-20 rounded-full bg-gradient-to-r from-amber-500 to-orange-600 flex items-center justify-center mb-6 neon-glow"> | |
| <i data-feather="smartphone" class="text-white text-3xl"></i> | |
| </div> | |
| <h3 class="text-2xl font-bold mb-4">Mobile Development</h3> | |
| <p class="text-gray-600 mb-6">Native and cross-platform mobile applications that deliver seamless experiences across iOS and Android devices.</p> | |
| <ul class="space-y-2 text-gray-600"> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="text-green-500 mr-2 w-4 h-4"></i> | |
| <span>iOS & Android Apps</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="text-green-500 mr-2 w-4 h-4"></i> | |
| <span>React Native Development</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="text-green-500 mr-2 w-4 h-4"></i> | |
| <span>App Store Optimization</span> | |
| </li> | |
| </ul> | |
| </div> | |
| <!-- Service 3 --> | |
| <div class="bg-white/80 backdrop-blur-sm rounded-2xl p-8 shadow-xl card-hover floating-3d" style="animation-delay: 1s"> | |
| <div class="w-20 h-20 rounded-full bg-gradient-to-r from-purple-500 to-pink-600 flex items-center justify-center mb-6 neon-glow"> | |
| <i data-feather="database" class="text-white text-3xl"></i> | |
| </div> | |
| <h3 class="text-2xl font-bold mb-4">Backend & API</h3> | |
| <p class="text-gray-600 mb-6">Robust server architecture, database design, and API development to power your applications with reliability and scale.</p> | |
| <ul class="space-y-2 text-gray-600"> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="text-green-500 mr-2 w-4 h-4"></i> | |
| <span>REST & GraphQL APIs</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="text-green-500 mr-2 w-4 h-4"></i> | |
| <span>Cloud Infrastructure</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="text-green-500 mr-2 w-4 h-4"></i> | |
| <span>Database Architecture</span> | |
| </li> | |
| </ul> | |
| </div> | |
| </div> | |
| <div class="grid md:grid-cols-3 gap-8 mt-8"> | |
| <!-- Service 4 --> | |
| <div class="bg-white rounded-2xl p-8 shadow-lg card-hover"> | |
| <div class="w-16 h-16 rounded-full bg-green-100 flex items-center justify-center mb-6"> | |
| <i data-feather="cpu" class="text-green-600 text-2xl"></i> | |
| </div> | |
| <h3 class="text-2xl font-bold mb-4">AI & Machine Learning</h3> | |
| <p class="text-gray-600 mb-6">Integrate cutting-edge AI capabilities into your products to automate processes and gain valuable insights.</p> | |
| <ul class="space-y-2 text-gray-600"> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="text-green-500 mr-2 w-4 h-4"></i> | |
| <span>Predictive Analytics</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="text-green-500 mr-2 w-4 h-4"></i> | |
| <span>Natural Language Processing</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="text-green-500 mr-2 w-4 h-4"></i> | |
| <span>Computer Vision</span> | |
| </li> | |
| </ul> | |
| </div> | |
| <!-- Service 5 --> | |
| <div class="bg-white rounded-2xl p-8 shadow-lg card-hover"> | |
| <div class="w-16 h-16 rounded-full bg-red-100 flex items-center justify-center mb-6"> | |
| <i data-feather="lock" class="text-red-600 text-2xl"></i> | |
| </div> | |
| <h3 class="text-2xl font-bold mb-4">Blockchain Solutions</h3> | |
| <p class="text-gray-600 mb-6">Develop decentralized applications, smart contracts, and blockchain integrations for the next generation of digital platforms.</p> | |
| <ul class="space-y-2 text-gray-600"> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="text-green-500 mr-2 w-4 h-4"></i> | |
| <span>Smart Contract Development</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="text-green-500 mr-2 w-4 h-4"></i> | |
| <span>DApp Creation</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="text-green-500 mr-2 w-4 h-4"></i> | |
| <span>Tokenization</span> | |
| </li> | |
| </ul> | |
| </div> | |
| <!-- Service 6 --> | |
| <div class="bg-white rounded-2xl p-8 shadow-lg card-hover"> | |
| <div class="w-16 h-16 rounded-full bg-blue-100 flex items-center justify-center mb-6"> | |
| <i data-feather="users" class="text-blue-600 text-2xl"></i> | |
| </div> | |
| <h3 class="text-2xl font-bold mb-4">Consulting & Strategy</h3> | |
| <p class="text-gray-600 mb-6">Strategic technology consulting to help you make informed decisions and plan your digital transformation journey.</p> | |
| <ul class="space-y-2 text-gray-600"> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="text-green-500 mr-2 w-4 h-4"></i> | |
| <span>Technical Audits</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="text-green-500 mr-2 w-4 h-4"></i> | |
| <span>Digital Transformation</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="text-green-500 mr-2 w-4 h-4"></i> | |
| <span>Technology Roadmaps</span> | |
| </li> | |
| </ul> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Team Section --> | |
| <section id="team" class="py-20 bg-white"> | |
| <div class="container mx-auto px-4"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-4xl font-bold mb-4">Meet Our Team</h2> | |
| <p class="text-xl text-gray-600 max-w-2xl mx-auto">The brilliant minds behind SuperNova's innovative solutions</p> | |
| </div> | |
| <div class="grid md:grid-cols-4 gap-8"> | |
| <!-- Team Member 1 --> | |
| <div class="text-center group"> | |
| <div class="relative mb-6 overflow-hidden rounded-2xl"> | |
| <img src="http://static.photos/technology/400x400/1" alt="Alex Chen" class="w-full h-80 object-cover transition-transform duration-500 group-hover:scale-110"> | |
| <div class="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-300 flex items-end justify-center pb-6"> | |
| <div class="flex space-x-4"> | |
| <a href="#" class="w-10 h-10 rounded-full bg-white/20 flex items-center justify-center text-white hover:bg-white/30 transition-colors"> | |
| <i data-feather="github"></i> | |
| </a> | |
| <a href="#" class="w-10 h-10 rounded-full bg-white/20 flex items-center justify-center text-white hover:bg-white/30 transition-colors"> | |
| <i data-feather="twitter"></i> | |
| </a> | |
| <a href="#" class="w-10 h-10 rounded-full bg-white/20 flex items-center justify-center text-white hover:bg-white/30 transition-colors"> | |
| <i data-feather="linkedin"></i> | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| <h3 class="text-xl font-bold mb-2">Alex Chen</h3> | |
| <p class="text-indigo-600 font-medium mb-2">Lead Full-Stack Developer</p> | |
| <p class="text-gray-600 text-sm">Specializes in React, Node.js, and cloud architecture with 8+ years experience.</p> | |
| </div> | |
| <!-- Team Member 2 --> | |
| <div class="text-center group"> | |
| <div class="relative mb-6 overflow-hidden rounded-2xl"> | |
| <img src="http://static.photos/technology/400x400/2" alt="Maria Rodriguez" class="w-full h-80 object-cover transition-transform duration-500 group-hover:scale-110"> | |
| <div class="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-300 flex items-end justify-center pb-6"> | |
| <div class="flex space-x-4"> | |
| <a href="#" class="w-10 h-10 rounded-full bg-white/20 flex items-center justify-center text-white hover:bg-white/30 transition-colors"> | |
| <i data-feather="github"></i> | |
| </a> | |
| <a href="#" class="w-10 h-10 rounded-full bg-white/20 flex items-center justify-center text-white hover:bg-white/30 transition-colors"> | |
| <i data-feather="twitter"></i> | |
| </a> | |
| <a href="#" class="w-10 h-10 rounded-full bg-white/20 flex items-center justify-center text-white hover:bg-white/30 transition-colors"> | |
| <i data-feather="linkedin"></i> | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| <h3 class="text-xl font-bold mb-2">Maria Rodriguez</h3> | |
| <p class="text-indigo-600 font-medium mb-2">UI/UX Design Lead</p> | |
| <p class="text-gray-600 text-sm">Creates intuitive, beautiful interfaces with a focus on user experience and accessibility.</p> | |
| </div> | |
| <!-- Team Member 3 --> | |
| <div class="text-center group"> | |
| <div class="relative mb-6 overflow-hidden rounded-2xl"> | |
| <img src="http://static.photos/technology/400x400/3" alt="James Kim" class="w-full h-80 object-cover transition-transform duration-500 group-hover:scale-110"> | |
| <div class="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-300 flex items-end justify-center pb-6"> | |
| <div class="flex space-x-4"> | |
| <a href="#" class="w-10 h-10 rounded-full bg-white/20 flex items-center justify-center text-white hover:bg-white/30 transition-colors"> | |
| <i data-feather="github"></i> | |
| </a> | |
| <a href="#" class="w-10 h-10 rounded-full bg-white/20 flex items-center justify-center text-white hover:bg-white/30 transition-colors"> | |
| <i data-feather="twitter"></i> | |
| </a> | |
| <a href="#" class="w-10 h-10 rounded-full bg-white/20 flex items-center justify-center text-white hover:bg-white/30 transition-colors"> | |
| <i data-feather="linkedin"></i> | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| <h3 class="text-xl font-bold mb-2">James Kim</h3> | |
| <p class="text-indigo-600 font-medium mb-2">Mobile Development Specialist</p> | |
| <p class="text-gray-600 text-sm">Expert in React Native, Flutter, and native iOS/Android development.</p> | |
| </div> | |
| <!-- Team Member 4 --> | |
| <div class="text-center group"> | |
| <div class="relative mb-6 overflow-hidden rounded-2xl"> | |
| <img src="http://static.photos/technology/400x400/4" alt="Sarah Johnson" class="w-full h-80 object-cover transition-transform duration-500 group-hover:scale-110"> | |
| <div class="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-300 flex items-end justify-center pb-6"> | |
| <div class="flex space-x-4"> | |
| <a href="#" class="w-10 h-10 rounded-full bg-white/20 flex items-center justify-center text-white hover:bg-white/30 transition-colors"> | |
| <i data-feather="github"></i> | |
| </a> | |
| <a href="#" class="w-10 h-10 rounded-full bg-white/20 flex items-center justify-center text-white hover:bg-white/30 transition-colors"> | |
| <i data-feather="twitter"></i> | |
| </a> | |
| <a href="#" class="w-10 h-10 rounded-full bg-white/20 flex items-center justify-center text-white hover:bg-white/30 transition-colors"> | |
| <i data-feather="linkedin"></i> | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| <h3 class="text-xl font-bold mb-2">Sarah Johnson</h3> | |
| <p class="text-indigo-600 font-medium mb-2">AI & Machine Learning Engineer</p> | |
| <p class="text-gray-600 text-sm">Pioneering AI solutions with expertise in TensorFlow, PyTorch, and computer vision.</p> | |
| </div> | |
| </div> | |
| <div class="text-center mt-12"> | |
| <button class="px-8 py-3 border-2 border-indigo-600 text-indigo-600 rounded-full font-medium hover:bg-indigo-50 transition-colors"> | |
| View All Team Members | |
| </button> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Projects Section --> | |
| <section id="projects" class="py-20 bg-gray-50"> | |
| <div class="section-divider"></div> | |
| <div class="container mx-auto px-4 -mt-20"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-4xl font-bold mb-4">Featured Projects</h2> | |
| <p class="text-xl text-gray-600 max-w-2xl mx-auto">Explore some of our recent work that showcases our expertise and innovation</p> | |
| </div> | |
| <div class="grid md:grid-cols-2 gap-12"> | |
| <!-- Project 1 --> | |
| <div class="bg-white rounded-2xl overflow-hidden shadow-lg card-hover"> | |
| <div class="h-64 bg-gradient-to-r from-indigo-500 to-purple-600 relative overflow-hidden"> | |
| <div class="absolute inset-0 bg-black/20"></div> | |
| <div class="absolute bottom-4 left-4"> | |
| <span class="bg-white/20 backdrop-blur-sm text-white px-3 py-1 rounded-full text-sm">Web Application</span> | |
| </div> | |
| </div> | |
| <div class="p-6"> | |
| <h3 class="text-2xl font-bold mb-2">Nexus Analytics Platform</h3> | |
| <p class="text-gray-600 mb-4">A comprehensive data analytics dashboard with real-time visualization and predictive insights for enterprise clients.</p> | |
| <div class="flex flex-wrap gap-2 mb-6"> | |
| <span class="bg-indigo-100 text-indigo-800 px-3 py-1 rounded-full text-sm">React</span> | |
| <span class="bg-amber-100 text-amber-800 px-3 py-1 rounded-full text-sm">Node.js</span> | |
| <span class="bg-green-100 text-green-800 px-3 py-1 rounded-full text-sm">MongoDB</span> | |
| <span class="bg-purple-100 text-purple-800 px-3 py-1 rounded-full text-sm">D3.js</span> | |
| </div> | |
| <a href="#" class="text-indigo-600 font-medium flex items-center"> | |
| View Case Study | |
| <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i> | |
| </a> | |
| </div> | |
| </div> | |
| <!-- Project 2 --> | |
| <div class="bg-white rounded-2xl overflow-hidden shadow-lg card-hover"> | |
| <div class="h-64 bg-gradient-to-r from-amber-500 to-orange-600 relative overflow-hidden"> | |
| <div class="absolute inset-0 bg-black/20"></div> | |
| <div class="absolute bottom-4 left-4"> | |
| <span class="bg-white/20 backdrop-blur-sm text-white px-3 py-1 rounded-full text-sm">Mobile App</span> | |
| </div> | |
| </div> | |
| <div class="p-6"> | |
| <h3 class="text-2xl font-bold mb-2">Flow Finance Tracker</h3> | |
| <p class="text-gray-600 mb-4">An intuitive mobile application for personal finance management with AI-powered spending insights and budgeting tools.</p> | |
| <div class="flex flex-wrap gap-2 mb-6"> | |
| <span class="bg-indigo-100 text-indigo-800 px-3 py-1 rounded-full text-sm">React Native</span> | |
| <span class="bg-green-100 text-green-800 px-3 py-1 rounded-full text-sm">Firebase</span> | |
| <span class="bg-blue-100 text-blue-800 px-3 py-1 rounded-full text-sm">TensorFlow</span> | |
| <span class="bg-purple-100 text-purple-800 px-3 py-1 rounded-full text-sm">Stripe</span> | |
| </div> | |
| <a href="#" class="text-indigo-600 font-medium flex items-center"> | |
| View Case Study | |
| <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i> | |
| </a> | |
| </div> | |
| </div> | |
| <!-- Project 3 --> | |
| <div class="bg-white rounded-2xl overflow-hidden shadow-lg card-hover"> | |
| <div class="h-64 bg-gradient-to-r from-green-500 to-teal-600 relative overflow-hidden"> | |
| <div class="absolute inset-0 bg-black/20"></div> | |
| <div class="absolute bottom-4 left-4"> | |
| <span class="bg-white/20 backdrop-blur-sm text-white px-3 py-1 rounded-full text-sm">Blockchain</span> | |
| </div> | |
| </div> | |
| <div class="p-6"> | |
| <h3 class="text-2xl font-bold mb-2">ArtChain Marketplace</h3> | |
| <p class="text-gray-600 mb-4">A decentralized marketplace for digital art using blockchain technology to ensure authenticity and ownership.</p> | |
| <div class="flex flex-wrap gap-2 mb-6"> | |
| <span class="bg-gray-100 text-gray-800 px-3 py-1 rounded-full text-sm">Solidity</span> | |
| <span class="bg-indigo-100 text-indigo-800 px-3 py-1 rounded-full text-sm">React</span> | |
| <span class="bg-yellow-100 text-yellow-800 px-3 py-1 rounded-full text-sm">Ethereum</span> | |
| <span class="bg-purple-100 text-purple-800 px-3 py-1 rounded-full text-sm">IPFS</span> | |
| </div> | |
| <a href="#" class="text-indigo-600 font-medium flex items-center"> | |
| View Case Study | |
| <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i> | |
| </a> | |
| </div> | |
| </div> | |
| <!-- Project 4 --> | |
| <div class="bg-white rounded-2xl overflow-hidden shadow-lg card-hover"> | |
| <div class="h-64 bg-gradient-to-r from-purple-500 to-pink-600 relative overflow-hidden"> | |
| <div class="absolute inset-0 bg-black/20"></div> | |
| <div class="absolute bottom-4 left-4"> | |
| <span class="bg-white/20 backdrop-blur-sm text-white px-3 py-1 rounded-full text-sm">AI Solution</span> | |
| </div> | |
| </div> | |
| <div class="p-6"> | |
| <h3 class="text-2xl font-bold mb-2">MediScan AI Diagnostics</h3> | |
| <p class="text-gray-600 mb-4">An AI-powered medical imaging analysis platform that assists healthcare professionals in diagnosing conditions.</p> | |
| <div class="flex flex-wrap gap-2 mb-6"> | |
| <span class="bg-orange-100 text-orange-800 px-3 py-1 rounded-full text-sm">Python</span> | |
| <span class="bg-blue-100 text-blue-800 px-3 py-1 rounded-full text-sm">TensorFlow</span> | |
| <span class="bg-green-100 text-green-800 px-3 py-1 rounded-full text-sm">FastAPI</span> | |
| <span class="bg-indigo-100 text-indigo-800 px-3 py-1 rounded-full text-sm">React</span> | |
| </div> | |
| <a href="#" class="text-indigo-600 font-medium flex items-center"> | |
| View Case Study | |
| <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i> | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="text-center mt-12"> | |
| <button class="px-8 py-3 bg-indigo-600 text-white rounded-full font-medium hover:bg-indigo-700 transition-colors shadow-lg"> | |
| View All Projects | |
| </button> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Contact Section --> | |
| <section id="contact" class="py-20 bg-white"> | |
| <div class="container mx-auto px-4"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-4xl font-bold mb-4">Get In Touch</h2> | |
| <p class="text-xl text-gray-600 max-w-2xl mx-auto">Ready to start your next project? Let's discuss how we can bring your ideas to life.</p> | |
| </div> | |
| <div class="grid md:grid-cols-2 gap-12"> | |
| <div> | |
| <h3 class="text-2xl font-bold mb-6">Contact Information</h3> | |
| <div class="space-y-6"> | |
| <div class="flex items-start"> | |
| <div class="w-12 h-12 rounded-full bg-indigo-100 flex items-center justify-center mr-4 mt-1"> | |
| <i data-feather="map-pin" class="text-indigo-600"></i> | |
| </div> | |
| <div> | |
| <h4 class="font-bold text-lg">Our Office</h4> | |
| <p class="text-gray-600">123 Innovation Drive<br>Tech Valley, CA 94025</p> | |
| </div> | |
| </div> | |
| <div class="flex items-start"> | |
| <div class="w-12 h-12 rounded-full bg-amber-100 flex items-center justify-center mr-4 mt-1"> | |
| <i data-feather="phone" class="text-amber-600"></i> | |
| </div> | |
| <div> | |
| <h4 class="font-bold text-lg">Phone</h4> | |
| <p class="text-gray-600">+1 (555) 123-4567</p> | |
| </div> | |
| </div> | |
| <div class="flex items-start"> | |
| <div class="w-12 h-12 rounded-full bg-green-100 flex items-center justify-center mr-4 mt-1"> | |
| <i data-feather="mail" class="text-green-600"></i> | |
| </div> | |
| <div> | |
| <h4 class="font-bold text-lg">Email</h4> | |
| <p class="text-gray-600">hello@supernova.dev</p> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="mt-8"> | |
| <h4 class="font-bold text-lg mb-4">Follow Us</h4> | |
| <div class="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-indigo-100 hover:text-indigo-600 transition-colors"> | |
| <i data-feather="github"></i> | |
| </a> | |
| <a href="#" class="w-10 h-10 rounded-full bg-gray-100 flex items-center justify-center text-gray-600 hover:bg-blue-100 hover:text-blue-600 transition-colors"> | |
| <i data-feather="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-indigo-100 hover:text-indigo-600 transition-colors"> | |
| <i data-feather="linkedin"></i> | |
| </a> | |
| <a href="#" class="w-10 h-10 rounded-full bg-gray-100 flex items-center justify-center text-gray-600 hover:bg-pink-100 hover:text-pink-600 transition-colors"> | |
| <i data-feather="instagram"></i> | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="bg-gray-50 rounded-2xl p-8"> | |
| <form class="space-y-6"> | |
| <div class="grid md:grid-cols-2 gap-6"> | |
| <div> | |
| <label for="name" class="block text-sm font-medium text-gray-700 mb-2">Your Name</label> | |
| <input type="text" id="name" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500 transition-colors" placeholder="John Doe"> | |
| </div> | |
| <div> | |
| <label for="email" class="block text-sm font-medium text-gray-700 mb-2">Email Address</label> | |
| <input type="email" id="email" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500 transition-colors" placeholder="john@example.com"> | |
| </div> | |
| </div> | |
| <div> | |
| <label for="subject" class="block text-sm font-medium text-gray-700 mb-2">Subject</label> | |
| <input type="text" id="subject" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500 transition-colors" placeholder="Project Inquiry"> | |
| </div> | |
| <div> | |
| <label for="message" class="block text-sm font-medium text-gray-700 mb-2">Message</label> | |
| <textarea id="message" rows="5" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500 transition-colors" placeholder="Tell us about your project..."></textarea> | |
| </div> | |
| <button type="submit" class="w-full bg-indigo-600 text-white py-3 px-6 rounded-lg font-medium hover:bg-indigo-700 transition-colors shadow-lg"> | |
| Send Message | |
| </button> | |
| </form> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Footer --> | |
| <footer class="bg-gray-900 text-white py-12"> | |
| <div class="container mx-auto px-4"> | |
| <div class="grid md:grid-cols-4 gap-8"> | |
| <div> | |
| <div class="flex items-center space-x-2 mb-6"> | |
| <div class="w-10 h-10 rounded-full gradient-bg flex items-center justify-center"> | |
| <i data-feather="star" class="text-white"></i> | |
| </div> | |
| <span class="text-xl font-bold">SuperNova</span> | |
| </div> | |
| <p class="text-gray-400 mb-6"> | |
| Transforming ideas into stellar digital experiences through innovative development and design. | |
| </p> | |
| <div class="flex space-x-4"> | |
| <a href="#" class="text-gray-400 hover:text-white transition-colors"> | |
| <i data-feather="github"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-white transition-colors"> | |
| <i data-feather="twitter"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-white transition-colors"> | |
| <i data-feather="linkedin"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-white transition-colors"> | |
| <i data-feather="instagram"></i> | |
| </a> | |
| </div> | |
| </div> | |
| <div> | |
| <h3 class="text-lg font-bold mb-6">Services</h3> | |
| <ul class="space-y-3 text-gray-400"> | |
| <li><a href="#" class="hover:text-white transition-colors">Web Development</a></li> | |
| <li><a href="#" class="hover:text-white transition-colors">Mobile Development</a></li> | |
| <li><a href="#" class="hover:text-white transition-colors">AI & Machine Learning</a></li> | |
| <li><a href="#" class="hover:text-white transition-colors">Blockchain Solutions</a></li> | |
| <li><a href="#" class="hover:text-white transition-colors">Consulting</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h3 class="text-lg font-bold mb-6">Company</h3> | |
| <ul class="space-y-3 text-gray-400"> | |
| <li><a href="#about" class="hover:text-white transition-colors">About Us</a></li> | |
| <li><a href="#team" class="hover:text-white transition-colors">Our Team</a></li> | |
| <li><a href="#projects" class="hover:text-white transition-colors">Projects</a></li> | |
| <li><a href="#" class="hover:text-white transition-colors">Careers</a></li> | |
| <li><a href="#" class="hover:text-white transition-colors">Blog</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h3 class="text-lg font-bold mb-6">Contact</h3> | |
| <ul class="space-y-3 text-gray-400"> | |
| <li class="flex items-center"> | |
| <i data-feather="map-pin" class="w-4 h-4 mr-2"></i> | |
| <span>123 Innovation Drive, Tech Valley</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i data-feather="phone" class="w-4 h-4 mr-2"></i> | |
| <span>+1 (555) 123-4567</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i data-feather="mail" class="w-4 h-4 mr-2"></i> | |
| <span>hello@supernova.dev</span> | |
| </li> | |
| </ul> | |
| </div> | |
| </div> | |
| <div class="border-t border-gray-800 mt-12 pt-8 text-center text-gray-400"> | |
| <p>© 2023 SuperNova. All rights reserved.</p> | |
| </div> | |
| </div> | |
| </footer> | |
| <!-- Scripts --> | |
| <script> | |
| // Initialize Feather Icons | |
| feather.replace(); | |
| // Advanced Three.js 3D Scene | |
| document.addEventListener('DOMContentLoaded', function() { | |
| // Main Hero Scene | |
| const scene = new THREE.Scene(); | |
| const camera = new THREE.PerspectiveCamera(75, window.innerWidth / window.innerHeight, 0.1, 1000); | |
| const renderer = new THREE.WebGLRenderer({ | |
| alpha: true, | |
| antialias: true | |
| }); | |
| renderer.setSize(window.innerWidth, window.innerHeight); | |
| renderer.setPixelRatio(Math.min(window.devicePixelRatio, 2)); | |
| document.getElementById('three-container').appendChild(renderer.domElement); | |
| // Enhanced stars with different sizes and colors | |
| const starGeometry = new THREE.BufferGeometry(); | |
| const starCount = 8000; | |
| const positions = new Float32Array(starCount * 3); | |
| const colors = new Float32Array(starCount * 3); | |
| const sizes = new Float32Array(starCount); | |
| const color = new THREE.Color(); | |
| for (let i = 0; i < starCount; i++) { | |
| const i3 = i * 3; | |
| positions[i3] = (Math.random() - 0.5) * 3000; | |
| positions[i3 + 1] = (Math.random() - 0.5) * 3000; | |
| positions[i3 + 2] = (Math.random() - 0.5) * 3000; | |
| // Color variation | |
| const hue = Math.random() * 0.1 + 0.6; // Blue to purple range | |
| color.setHSL(hue, 0.8, 0.5 + Math.random() * 0.5); | |
| colors[i3] = color.r; | |
| colors[i3 + 1] = color.g; | |
| colors[i3 + 2] = color.b; | |
| // Size variation | |
| sizes[i] = Math.random() * 3 + 1; | |
| } | |
| starGeometry.setAttribute('position', new THREE.BufferAttribute(positions, 3)); | |
| starGeometry.setAttribute('color', new THREE.BufferAttribute(colors, 3)); | |
| starGeometry.setAttribute('size', new THREE.BufferAttribute(sizes, 1)); | |
| const starMaterial = new THREE.PointsMaterial({ | |
| size: 2, | |
| sizeAttenuation: true, | |
| vertexColors: true, | |
| transparent: true | |
| }); | |
| const stars = new THREE.Points(starGeometry, starMaterial); | |
| scene.add(stars); | |
| // Add floating geometric shapes | |
| const geometry = new THREE.IcosahedronGeometry(50, 0); | |
| const material = new THREE.MeshPhongMaterial({ | |
| color: 0x6366f1, | |
| transparent: true, | |
| opacity: 0.7 | |
| }); | |
| const mesh = new THREE.Mesh(geometry, material); | |
| mesh.position.set(100, 100, -200); | |
| scene.add(mesh); | |
| // Add ambient light | |
| const ambientLight = new THREE.AmbientLight(0x404040, 0.4); | |
| scene.add(ambientLight); | |
| // Add directional light | |
| const directionalLight = new THREE.DirectionalLight(0xffffff, 0.8); | |
| directionalLight.position.set(1, 1, 1); | |
| scene.add(directionalLight); | |
| camera.position.z = 1; | |
| // Particle Network Animation | |
| const particleScene = new THREE.Scene(); | |
| const particleCamera = new THREE.PerspectiveCamera(75, window.innerWidth / window.innerHeight, 0.1, 1000); | |
| // Create particle system | |
| const particleCount = 1500; | |
| const particleGeometry = new THREE.BufferGeometry(); | |
| const particlePositions = new Float32Array(particleCount * 3); | |
| for (let i = 0; i < particleCount * 3; i++) { | |
| particlePositions[i] = (Math.random() - 0.5) * 2000; | |
| } | |
| particleGeometry.setAttribute('position', new THREE.BufferAttribute(particlePositions, 3)); | |
| const particleMaterial = new THREE.PointsMaterial({ | |
| color: 0x6366f1, | |
| size: 2, | |
| transparent: true, | |
| opacity: 0.6 | |
| }); | |
| const particles = new THREE.Points(particleGeometry, particleMaterial); | |
| particleScene.add(particles); | |
| // Animation function | |
| function animate() { | |
| requestAnimationFrame(animate); | |
| // Rotate stars | |
| stars.rotation.x += 0.0002; | |
| stars.rotation.y += 0.0003; | |
| // Animate floating mesh | |
| mesh.rotation.x += 0.005; | |
| mesh.rotation.y += 0.008; | |
| // Animate particles | |
| particles.rotation.y += 0.001; | |
| renderer.render(scene, camera); | |
| } | |
| animate(); | |
| // Handle window resize | |
| window.addEventListener('resize', function() { | |
| camera.aspect = window.innerWidth / window.innerHeight; | |
| camera.updateProjectionMatrix(); | |
| renderer.setSize(window.innerWidth, window.innerHeight); | |
| }); | |
| // GSAP animations for scroll-triggered elements | |
| gsap.registerPlugin(ScrollTrigger, ScrollToPlugin); | |
| // Enhanced scroll animations | |
| gsap.utils.toArray('.card-hover').forEach(card => { | |
| gsap.from(card, { | |
| scrollTrigger: { | |
| trigger: card, | |
| start: "top 85%", | |
| end: "bottom 15%", | |
| toggleActions: "play none none reverse" | |
| }, | |
| y: 80, | |
| opacity: 0, | |
| duration: 1.2, | |
| ease: "power3.out" | |
| }); | |
| }); | |
| // 3D Showcase Scene | |
| const showcaseScene = new THREE.Scene(); | |
| const showcaseCamera = new THREE.PerspectiveCamera(75, window.innerWidth / window.innerHeight, 0.1, 1000); | |
| const showcaseRenderer = new THREE.WebGLRenderer({ | |
| alpha: true, | |
| antialias: true | |
| }); | |
| if (document.getElementById('showcase-container')) { | |
| showcaseRenderer.setSize(document.getElementById('showcase-container').offsetWidth, | |
| document.getElementById('showcase-container').offsetHeight | |
| ); | |
| document.getElementById('showcase-container').appendChild(showcaseRenderer.domElement); | |
| // Add showcase objects | |
| const showcaseGeometry = new THREE.TorusKnotGeometry(10, 3, 100, 16); | |
| const showcaseMaterial = new THREE.MeshPhysicalMaterial({ | |
| color: 0x6366f1, | |
| metalness: 0.8, | |
| roughness: 0.2, | |
| clearcoat: 1, | |
| clearcoatRoughness: 0.1 | |
| }); | |
| const showcaseMesh = new THREE.Mesh(showcaseGeometry, showcaseMaterial); | |
| showcaseScene.add(showcaseMesh); | |
| // Add showcase lighting | |
| const showcaseLight = new THREE.DirectionalLight(0xffffff, 1); | |
| showcaseLight.position.set(5, 5, 5); | |
| showcaseScene.add(showcaseLight); | |
| showcaseCamera.position.z = 30; | |
| function animateShowcase() { | |
| requestAnimationFrame(animateShowcase); | |
| showcaseMesh.rotation.x += 0.01; | |
| showcaseMesh.rotation.y += 0.005; | |
| showcaseRenderer.render(showcaseScene, showcaseCamera); | |
| } | |
| // Interactive cursor effects | |
| document.addEventListener('mousemove', function(e) { | |
| const mouseX = e.clientX / window.innerWidth - 0.5; | |
| const mouseY = e.clientY / window.innerHeight - 0.5; | |
| if (mesh) { | |
| mesh.rotation.y = mouseX * 0.5; | |
| mesh.rotation.x = mouseY * 0.5; | |
| } | |
| }); | |
| // Enhanced typewriter effect | |
| const typewriterElement = document.querySelector('.typewriter'); | |
| if (typewriterElement) { | |
| const text = typewriterElement.textContent; | |
| typewriterElement.textContent = ''; | |
| let i = 0; | |
| function typeWriter() { | |
| if (i < text.length) { | |
| typewriterElement.textContent += text.charAt(i); | |
| i++; | |
| setTimeout(typeWriter, 100); | |
| } | |
| typeWriter(); | |
| } | |
| }); | |
| </script> | |
| </body> | |
| </html> | |