Spaces:
Running
Running
| <html lang="en" class="scroll-smooth"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>LimeLight Web Studio | Modern Web Solutions</title> | |
| <link rel="stylesheet" href="style.css"> | |
| <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: { | |
| 500: '#6366f1', // indigo-500 as fallback since primary was undefined | |
| } | |
| } | |
| } | |
| } | |
| } | |
| </script> | |
| </head> | |
| <body class="bg-gray-50 text-gray-800 font-sans"> | |
| <custom-navbar></custom-navbar> | |
| <main class="min-h-screen"> | |
| <!-- Hero Section --> | |
| <section class="relative py-20 bg-gradient-to-br from-primary-500 to-lime-500"> | |
| <div class="container mx-auto px-4"> | |
| <div class="flex flex-col items-center justify-center text-center text-white"> | |
| <h1 class="text-4xl md:text-6xl font-bold mb-6">Illuminate Your Digital Presence</h1> | |
| <p class="text-xl md:text-2xl mb-8 max-w-3xl">We craft stunning web experiences with a splash of lime freshness</p> | |
| <div class="flex flex-wrap justify-center gap-4"> | |
| <a href="#services" class="px-8 py-3 bg-white text-primary-500 rounded-full font-semibold hover:bg-gray-100 transition duration-300"> | |
| Our Services | |
| </a> | |
| <a href="#contact" class="px-8 py-3 border-2 border-white text-white rounded-full font-semibold hover:bg-white hover:text-primary-500 transition duration-300"> | |
| Get Started | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="absolute bottom-0 left-0 right-0 overflow-hidden"> | |
| <svg class="w-full" viewBox="0 0 1200 120" preserveAspectRatio="none"> | |
| <path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" class="fill-current text-white"></path> | |
| <path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" class="fill-current text-white"></path> | |
| <path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" class="fill-current text-white"></path> | |
| </svg> | |
| </div> | |
| </section> | |
| <!-- Services Section --> | |
| <section id="services" class="py-20 bg-white"> | |
| <div class="container mx-auto px-4"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">Our Zesty Services</h2> | |
| <div class="w-20 h-1 bg-lime-500 mx-auto"></div> | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-3 gap-8"> | |
| <div class="bg-gray-50 rounded-xl p-8 shadow-lg hover:shadow-xl transition duration-300"> | |
| <div class="w-16 h-16 bg-lime-100 rounded-full flex items-center justify-center mb-6"> | |
| <i data-feather="layout" class="text-lime-600 w-8 h-8"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-4">UI/UX Design</h3> | |
| <p class="text-gray-600">We create intuitive interfaces with a fresh lime twist that users love to interact with.</p> | |
| </div> | |
| <div class="bg-gray-50 rounded-xl p-8 shadow-lg hover:shadow-xl transition duration-300"> | |
| <div class="w-16 h-16 bg-lime-100 rounded-full flex items-center justify-center mb-6"> | |
| <i data-feather="code" class="text-lime-600 w-8 h-8"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-4">Web Development</h3> | |
| <p class="text-gray-600">Modern, responsive websites built with cutting-edge technologies and lime-inspired creativity.</p> | |
| </div> | |
| <div class="bg-gray-50 rounded-xl p-8 shadow-lg hover:shadow-xl transition duration-300"> | |
| <div class="w-16 h-16 bg-lime-100 rounded-full flex items-center justify-center mb-6"> | |
| <i data-feather="bar-chart-2" class="text-lime-600 w-8 h-8"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-4">Digital Strategy</h3> | |
| <p class="text-gray-600">Data-driven lime-infused strategies to grow your online presence effectively.</p> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Portfolio Section --> | |
| <section class="py-20 bg-gray-50"> | |
| <div class="container mx-auto px-4"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">Fresh Work Samples</h2> | |
| <div class="w-20 h-1 bg-lime-500 mx-auto"></div> | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> | |
| <div class="relative group overflow-hidden rounded-xl shadow-lg hover:shadow-xl transition duration-300"> | |
| <img src="http://static.photos/technology/640x360/1" alt="Tech Project" class="w-full h-64 object-cover"> | |
| <div class="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent flex items-end p-6 opacity-0 group-hover:opacity-100 transition duration-300"> | |
| <div> | |
| <h3 class="text-white text-xl font-bold">Tech Dashboard</h3> | |
| <p class="text-lime-200">Modern analytics interface</p> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="relative group overflow-hidden rounded-xl shadow-lg hover:shadow-xl transition duration-300"> | |
| <img src="http://static.photos/workspace/640x360/2" alt="Workspace Project" class="w-full h-64 object-cover"> | |
| <div class="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent flex items-end p-6 opacity-0 group-hover:opacity-100 transition duration-300"> | |
| <div> | |
| <h3 class="text-white text-xl font-bold">Corporate Portal</h3> | |
| <p class="text-lime-200">Streamlined business solution</p> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="relative group overflow-hidden rounded-xl shadow-lg hover:shadow-xl transition duration-300"> | |
| <img src="http://static.photos/education/640x360/3" alt="Education Project" class="w-full h-64 object-cover"> | |
| <div class="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent flex items-end p-6 opacity-0 group-hover:opacity-100 transition duration-300"> | |
| <div> | |
| <h3 class="text-white text-xl font-bold">Learning Platform</h3> | |
| <p class="text-lime-200">Interactive educational experience</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- CTA Section --> | |
| <section id="contact" class="py-20 bg-primary-500 text-white"> | |
| <div class="container mx-auto px-4"> | |
| <div class="max-w-3xl mx-auto text-center"> | |
| <h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to Add Some Zest to Your Project?</h2> | |
| <p class="text-xl mb-8">Let's create something amazing together with our unique lime-inspired approach.</p> | |
| <a href="#contact-form" class="px-8 py-3 bg-lime-500 hover:bg-lime-600 text-white rounded-full font-semibold transition duration-300 inline-block"> | |
| Get in Touch | |
| </a> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Contact Form --> | |
| <section class="py-20 bg-white"> | |
| <div class="container mx-auto px-4"> | |
| <div class="max-w-2xl mx-auto bg-gray-50 rounded-xl shadow-lg p-8"> | |
| <h2 class="text-3xl font-bold text-gray-800 mb-6">Drop Us a Lime</h2> | |
| <form id="contact-form" class="space-y-6"> | |
| <div class="grid grid-cols-1 md:grid-cols-2 gap-6"> | |
| <div> | |
| <label for="name" class="block text-gray-700 mb-2">Your Name</label> | |
| <input type="text" id="name" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-lime-500 focus:border-transparent"> | |
| </div> | |
| <div> | |
| <label for="email" class="block text-gray-700 mb-2">Your Email</label> | |
| <input type="email" id="email" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-lime-500 focus:border-transparent"> | |
| </div> | |
| </div> | |
| <div> | |
| <label for="subject" class="block text-gray-700 mb-2">Subject</label> | |
| <input type="text" id="subject" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-lime-500 focus:border-transparent"> | |
| </div> | |
| <div> | |
| <label for="message" class="block text-gray-700 mb-2">Your Message</label> | |
| <textarea id="message" rows="5" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-lime-500 focus:border-transparent"></textarea> | |
| </div> | |
| <button type="submit" class="w-full bg-lime-500 hover:bg-lime-600 text-white font-semibold py-3 px-6 rounded-lg transition duration-300"> | |
| Send Message | |
| </button> | |
| </form> | |
| </div> | |
| </div> | |
| </section> | |
| </main> | |
| <custom-footer></custom-footer> | |
| <script src="components/navbar.js"></script> | |
| <script src="components/footer.js"></script> | |
| <script src="script.js"></script> | |
| <script>feather.replace();</script> | |
| <script src="https://huggingface.co/deepsite/deepsite-badge.js"></script> | |
| </body> | |
| </html> |