Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>PixelPulse Wizardry | Digital Sorcery</title> | |
| <link rel="icon" type="image/x-icon" href="/static/favicon.ico"> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <script src="https://unpkg.com/feather-icons"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.globe.min.js"></script> | |
| <style> | |
| @import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap'); | |
| body { | |
| font-family: 'Space Grotesk', sans-serif; | |
| } | |
| .gradient-text { | |
| background: linear-gradient(90deg, #8b5cf6 0%, #ec4899 100%); | |
| -webkit-background-clip: text; | |
| background-clip: text; | |
| color: transparent; | |
| } | |
| .card-hover { | |
| transition: all 0.3s ease; | |
| transform: translateY(0); | |
| } | |
| .card-hover:hover { | |
| transform: translateY(-8px); | |
| box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); | |
| } | |
| </style> | |
| </head> | |
| <body class="bg-gray-50 min-h-screen" id="vanta-bg"> | |
| <!-- Navigation --> | |
| <nav class="bg-white/80 backdrop-blur-sm border-b border-gray-200 fixed w-full z-10"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="flex justify-between h-16"> | |
| <div class="flex items-center"> | |
| <span class="text-xl font-bold gradient-text">PixelPulse</span> | |
| </div> | |
| <div class="hidden md:flex items-center space-x-8"> | |
| <a href="#" class="text-gray-700 hover:text-purple-600 transition">Features</a> | |
| <a href="flow.html" class="text-gray-700 hover:text-purple-600 transition">Flow Builder</a> | |
| <a href="events.html" class="text-gray-700 hover:text-purple-600 transition">Events</a> | |
| <a href="#" class="text-gray-700 hover:text-purple-600 transition">Pricing</a> | |
| <a href="#" class="text-gray-700 hover:text-purple-600 transition">Contact</a> | |
| <button class="bg-gradient-to-r from-purple-600 to-pink-500 text-white px-4 py-2 rounded-full hover:shadow-lg transition">Get Started</button> | |
| </div> | |
| <div class="md:hidden flex items-center"> | |
| <button id="menu-toggle"> | |
| <i data-feather="menu"></i> | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </nav> | |
| <!-- Hero Section --> | |
| <section class="pt-32 pb-20 px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto"> | |
| <div class="text-center"> | |
| <h1 class="text-5xl md:text-6xl font-bold text-gray-900 mb-6"> | |
| <span class="gradient-text">Digital Wizardry</span> at Your Fingertips | |
| </h1> | |
| <p class="text-xl text-gray-600 max-w-3xl mx-auto mb-10"> | |
| I conjure pixel-perfect interfaces, interactive experiences, and digital magic that transforms your vision into reality. | |
| </p> | |
| <div class="flex flex-col sm:flex-row justify-center gap-4"> | |
| <button class="bg-gradient-to-r from-purple-600 to-pink-500 text-white px-8 py-3 rounded-full text-lg font-medium hover:shadow-lg transition"> | |
| Cast a Spell <i data-feather="zap" class="inline ml-2"></i> | |
| </button> | |
| <button class="border-2 border-gray-300 text-gray-700 px-8 py-3 rounded-full text-lg font-medium hover:border-purple-400 hover:text-purple-600 transition"> | |
| Explore Magic <i data-feather="compass" class="inline ml-2"></i> | |
| </button> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Capabilities Section --> | |
| <section class="py-20 px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-4">My Magical Capabilities</h2> | |
| <p class="text-xl text-gray-600 max-w-2xl mx-auto">From responsive designs to animated interactions, I wield a powerful arsenal of digital spells.</p> | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> | |
| <!-- Card 1 --> | |
| <div class="bg-white p-8 rounded-xl shadow-md card-hover"> | |
| <div class="w-16 h-16 bg-purple-100 rounded-lg flex items-center justify-center mb-6"> | |
| <i data-feather="code" class="text-purple-600 w-8 h-8"></i> | |
| </div> | |
| <h3 class="text-xl font-bold text-gray-900 mb-3">Front-End Enchantment</h3> | |
| <p class="text-gray-600 mb-4">Masterful HTML5, CSS3, and JavaScript spells to create responsive, accessible, and performant interfaces.</p> | |
| <div class="flex flex-wrap gap-2"> | |
| <span class="bg-purple-100 text-purple-800 text-xs px-3 py-1 rounded-full">React</span> | |
| <span class="bg-purple-100 text-purple-800 text-xs px-3 py-1 rounded-full">Vue</span> | |
| <span class="bg-purple-100 text-purple-800 text-xs px-3 py-1 rounded-full">Tailwind</span> | |
| </div> | |
| </div> | |
| <!-- Card 2 --> | |
| <div class="bg-white p-8 rounded-xl shadow-md card-hover"> | |
| <div class="w-16 h-16 bg-pink-100 rounded-lg flex items-center justify-center mb-6"> | |
| <i data-feather="layers" class="text-pink-600 w-8 h-8"></i> | |
| </div> | |
| <h3 class="text-xl font-bold text-gray-900 mb-3">UI/UX Wizardry</h3> | |
| <p class="text-gray-600 mb-4">Crafting intuitive user experiences with pixel-perfect designs that delight and engage your audience.</p> | |
| <div class="flex flex-wrap gap-2"> | |
| <span class="bg-pink-100 text-pink-800 text-xs px-3 py-1 rounded-full">Figma</span> | |
| <span class="bg-pink-100 text-pink-800 text-xs px-3 py-1 rounded-full">Adobe XD</span> | |
| <span class="bg-pink-100 text-pink-800 text-xs px-3 py-1 rounded-full">User Testing</span> | |
| </div> | |
| </div> | |
| <!-- Card 3 --> | |
| <div class="bg-white p-8 rounded-xl shadow-md card-hover"> | |
| <div class="w-16 h-16 bg-indigo-100 rounded-lg flex items-center justify-center mb-6"> | |
| <i data-feather="activity" class="text-indigo-600 w-8 h-8"></i> | |
| </div> | |
| <h3 class="text-xl font-bold text-gray-900 mb-3">Interactive Alchemy</h3> | |
| <p class="text-gray-600 mb-4">Transforming static designs into dynamic experiences with animations, micro-interactions, and scroll effects.</p> | |
| <div class="flex flex-wrap gap-2"> | |
| <span class="bg-indigo-100 text-indigo-800 text-xs px-3 py-1 rounded-full">GSAP</span> | |
| <span class="bg-indigo-100 text-indigo-800 text-xs px-3 py-1 rounded-full">Three.js</span> | |
| <span class="bg-indigo-100 text-indigo-800 text-xs px-3 py-1 rounded-full">Anime.js</span> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Feature Showcase --> | |
| <section class="py-20 px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto bg-gradient-to-br from-purple-50 to-pink-50 rounded-3xl my-16"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-4">Specialized Digital Spells</h2> | |
| <p class="text-xl text-gray-600 max-w-2xl mx-auto">A grimoire of unique capabilities to solve your most challenging problems</p> | |
| </div> | |
| <div class="grid grid-cols-1 lg:grid-cols-2 gap-12 items-center"> | |
| <div> | |
| <div class="mb-8"> | |
| <div class="flex items-start mb-4"> | |
| <div class="flex-shrink-0 bg-purple-100 p-2 rounded-lg mr-4"> | |
| <i data-feather="check-circle" class="text-purple-600 w-6 h-6"></i> | |
| </div> | |
| <div> | |
| <h3 class="text-xl font-bold text-gray-900 mb-2">TailwindCSS Mastery</h3> | |
| <p class="text-gray-600">Rapidly prototype and build production-ready interfaces with utility-first CSS framework expertise.</p> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="mb-8"> | |
| <div class="flex items-start mb-4"> | |
| <div class="flex-shrink-0 bg-pink-100 p-2 rounded-lg mr-4"> | |
| <i data-feather="eye" class="text-pink-600 w-6 h-6"></i> | |
| </div> | |
| <div> | |
| <h3 class="text-xl font-bold text-gray-900 mb-2">Responsive Enchantments</h3> | |
| <p class="text-gray-600">Spells that adapt seamlessly across all devices, from tiny elven scrolls to giant ogre tablets.</p> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="mb-8"> | |
| <div class="flex items-start mb-4"> | |
| <div class="flex-shrink-0 bg-indigo-100 p-2 rounded-lg mr-4"> | |
| <i data-feather="cpu" class="text-indigo-600 w-6 h-6"></i> | |
| </div> | |
| <div> | |
| <h3 class="text-xl font-bold text-gray-900 mb-2">Performance Optimization</h3> | |
| <p class="text-gray-600">Magical compression and optimization techniques to make your site faster than a wizard's apparition.</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="relative"> | |
| <div class="bg-white p-6 rounded-2xl shadow-xl"> | |
| <div class="bg-gray-800 rounded-lg overflow-hidden"> | |
| <div class="bg-gray-900 px-4 py-3 flex items-center"> | |
| <div class="flex space-x-2"> | |
| <div class="w-3 h-3 rounded-full bg-red-500"></div> | |
| <div class="w-3 h-3 rounded-full bg-yellow-500"></div> | |
| <div class="w-3 h-3 rounded-full bg-green-500"></div> | |
| </div> | |
| <div class="text-white text-sm ml-4">magic-spell.js</div> | |
| </div> | |
| <div class="p-4 text-gray-300 font-mono text-sm"> | |
| <span class="text-purple-400">function</span> <span class="text-blue-400">animateElement</span>() {<br> | |
| <span class="text-green-400">const</span> element = document.<span class="text-yellow-400">querySelector</span>(<span class="text-orange-400">'.spell'</span>);<br> | |
| anime({<br> | |
| targets: element,<br> | |
| translateY: [-50, 0],<br> | |
| opacity: [0, 1],<br> | |
| duration: 1200,<br> | |
| easing: <span class="text-orange-400">'easeOutElastic'</span>,<br> | |
| delay: anime.<span class="text-yellow-400">stagger</span>(100)<br> | |
| });<br> | |
| } | |
| </div> | |
| </div> | |
| </div> | |
| <div class="absolute -bottom-6 -right-6 w-32 h-32 rounded-full bg-purple-200 opacity-30"></div> | |
| <div class="absolute -top-6 -left-6 w-24 h-24 rounded-full bg-pink-200 opacity-30"></div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- CTA Section --> | |
| <section class="py-20 px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto"> | |
| <div class="bg-gradient-to-r from-purple-600 to-pink-500 rounded-2xl p-10 text-center"> | |
| <h2 class="text-3xl md:text-4xl font-bold text-white mb-6">Ready to Transform Your Vision?</h2> | |
| <p class="text-xl text-purple-100 mb-8 max-w-2xl mx-auto">Let's collaborate to create something extraordinary that captures attention and delivers results.</p> | |
| <button class="bg-white text-purple-600 px-8 py-3 rounded-full text-lg font-medium hover:bg-gray-100 transition shadow-xl"> | |
| Begin Your Journey <i data-feather="arrow-right" class="inline ml-2"></i> | |
| </button> | |
| </div> | |
| </section> | |
| <!-- Footer --> | |
| <footer class="bg-gray-900 text-gray-400 py-12 px-4 sm:px-6 lg:px-8"> | |
| <div class="max-w-7xl mx-auto"> | |
| <div class="grid grid-cols-1 md:grid-cols-4 gap-8"> | |
| <div> | |
| <h3 class="text-white text-lg font-bold mb-4">PixelPulse</h3> | |
| <p class="mb-4">Digital wizardry for the modern age.</p> | |
| <div class="flex space-x-4"> | |
| <a href="#" class="hover:text-white transition"><i data-feather="github"></i></a> | |
| <a href="#" class="hover:text-white transition"><i data-feather="twitter"></i></a> | |
| <a href="#" class="hover:text-white transition"><i data-feather="linkedin"></i></a> | |
| <a href="#" class="hover:text-white transition"><i data-feather="dribbble"></i></a> | |
| </div> | |
| </div> | |
| <div> | |
| <h3 class="text-white text-lg font-bold mb-4">Services</h3> | |
| <ul class="space-y-2"> | |
| <li><a href="#" class="hover:text-white transition">UI/UX Design</a></li> | |
| <li><a href="#" class="hover:text-white transition">Front-End Development</a></li> | |
| <li><a href="#" class="hover:text-white transition">Interactive Experiences</a></li> | |
| <li><a href="#" class="hover:text-white transition">Performance Optimization</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h3 class="text-white text-lg font-bold mb-4">Resources</h3> | |
| <ul class="space-y-2"> | |
| <li><a href="#" class="hover:text-white transition">Blog</a></li> | |
| <li><a href="#" class="hover:text-white transition">Case Studies</a></li> | |
| <li><a href="#" class="hover:text-white transition">Design System</a></li> | |
| <li><a href="#" class="hover:text-white transition">Free Templates</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h3 class="text-white text-lg font-bold mb-4">Contact</h3> | |
| <ul class="space-y-2"> | |
| <li class="flex items-center"><i data-feather="mail" class="mr-2"></i> hello@pixelpulse.dev</li> | |
| <li class="flex items-center"><i data-feather="phone" class="mr-2"></i> +1 (555) 123-4567</li> | |
| <li class="flex items-center"><i data-feather="map-pin" class="mr-2"></i> Digital Realm, Internet</li> | |
| </ul> | |
| </div> | |
| </div> | |
| <div class="border-t border-gray-800 mt-12 pt-8 text-sm text-center"> | |
| <p>© 2023 PixelPulse Wizardry. All rights reserved.</p> | |
| </div> | |
| </div> | |
| </footer> | |
| <script> | |
| // Initialize Vanta.js | |
| VANTA.GLOBE({ | |
| el: "#vanta-bg", | |
| mouseControls: true, | |
| touchControls: true, | |
| gyroControls: false, | |
| minHeight: 200.00, | |
| minWidth: 200.00, | |
| scale: 1.00, | |
| scaleMobile: 1.00, | |
| color: 0x8b5cf6, | |
| backgroundColor: 0xf8fafc, | |
| size: 0.8 | |
| }); | |
| // Initialize Feather Icons | |
| feather.replace(); | |
| // Mobile menu toggle | |
| document.getElementById('menu-toggle').addEventListener('click', function() { | |
| // You would implement your mobile menu logic here | |
| console.log('Mobile menu toggled'); | |
| }); | |
| </script> | |
| </body> | |
| </html> | |