Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Nexus Web Agency | Digital Excellence</title> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> | |
| <style> | |
| /* Custom CSS for animations */ | |
| @keyframes fadeIn { | |
| from { opacity: 0; transform: translateY(20px); } | |
| to { opacity: 1; transform: translateY(0); } | |
| } | |
| .fade-in { | |
| animation: fadeIn 1s ease-out forwards; | |
| } | |
| .delay-1 { animation-delay: 0.2s; } | |
| .delay-2 { animation-delay: 0.4s; } | |
| .delay-3 { animation-delay: 0.6s; } | |
| .delay-4 { animation-delay: 0.8s; } | |
| .gradient-text { | |
| background: linear-gradient(90deg, #3b82f6, #8b5cf6); | |
| -webkit-background-clip: text; | |
| background-clip: text; | |
| color: transparent; | |
| } | |
| .project-card:hover .project-overlay { | |
| opacity: 1; | |
| transform: translateY(0); | |
| } | |
| .project-overlay { | |
| opacity: 0; | |
| transform: translateY(20px); | |
| transition: all 0.3s ease; | |
| } | |
| /* Custom scrollbar */ | |
| ::-webkit-scrollbar { | |
| width: 8px; | |
| } | |
| ::-webkit-scrollbar-track { | |
| background: #f1f1f1; | |
| } | |
| ::-webkit-scrollbar-thumb { | |
| background: #888; | |
| border-radius: 4px; | |
| } | |
| ::-webkit-scrollbar-thumb:hover { | |
| background: #555; | |
| } | |
| </style> | |
| </head> | |
| <body class="font-sans bg-gray-50 text-gray-800"> | |
| <!-- Navigation --> | |
| <nav class="fixed w-full bg-white shadow-md z-50 transition-all duration-300"> | |
| <div class="container mx-auto px-6 py-4"> | |
| <div class="flex justify-between items-center"> | |
| <div class="text-2xl font-bold gradient-text">Nexus</div> | |
| <div class="hidden md:flex space-x-8"> | |
| <a href="#home" class="hover:text-blue-600 transition">Home</a> | |
| <a href="#services" class="hover:text-blue-600 transition">Services</a> | |
| <a href="#portfolio" class="hover:text-blue-600 transition">Portfolio</a> | |
| <a href="#about" class="hover:text-blue-600 transition">About</a> | |
| <a href="#contact" class="hover:text-blue-600 transition">Contact</a> | |
| </div> | |
| <button class="md:hidden focus:outline-none" id="menu-toggle"> | |
| <i class="fas fa-bars text-2xl"></i> | |
| </button> | |
| </div> | |
| <!-- Mobile menu --> | |
| <div class="md:hidden hidden mt-4" id="mobile-menu"> | |
| <a href="#home" class="block py-2 hover:text-blue-600 transition">Home</a> | |
| <a href="#services" class="block py-2 hover:text-blue-600 transition">Services</a> | |
| <a href="#portfolio" class="block py-2 hover:text-blue-600 transition">Portfolio</a> | |
| <a href="#about" class="block py-2 hover:text-blue-600 transition">About</a> | |
| <a href="#contact" class="block py-2 hover:text-blue-600 transition">Contact</a> | |
| </div> | |
| </div> | |
| </nav> | |
| <!-- Hero Section --> | |
| <section id="home" class="pt-32 pb-20 px-6 bg-gradient-to-r from-blue-50 to-purple-50"> | |
| <div class="container mx-auto"> | |
| <div class="flex flex-col md:flex-row items-center"> | |
| <div class="md:w-1/2 mb-10 md:mb-0 fade-in"> | |
| <h1 class="text-4xl md:text-5xl lg:text-6xl font-bold mb-6">We Build <span class="gradient-text">Digital Experiences</span></h1> | |
| <p class="text-lg text-gray-600 mb-8">Nexus is a creative web agency focused on crafting beautiful, functional websites that drive results for your business.</p> | |
| <div class="flex space-x-4"> | |
| <a href="#contact" class="bg-gradient-to-r from-blue-600 to-purple-600 text-white px-6 py-3 rounded-lg font-medium hover:opacity-90 transition">Get Started</a> | |
| <a href="#portfolio" class="border border-gray-300 px-6 py-3 rounded-lg font-medium hover:bg-gray-100 transition">View Work</a> | |
| </div> | |
| </div> | |
| <div class="md:w-1/2 fade-in delay-1"> | |
| <img src="https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Web development" class="rounded-xl shadow-xl w-full h-auto"> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Stats Section --> | |
| <section class="py-16 bg-white"> | |
| <div class="container mx-auto px-6"> | |
| <div class="grid grid-cols-2 md:grid-cols-4 gap-8 text-center"> | |
| <div class="fade-in delay-1"> | |
| <div class="text-4xl font-bold gradient-text mb-2">150+</div> | |
| <p class="text-gray-600">Projects Completed</p> | |
| </div> | |
| <div class="fade-in delay-2"> | |
| <div class="text-4xl font-bold gradient-text mb-2">50+</div> | |
| <p class="text-gray-600">Happy Clients</p> | |
| </div> | |
| <div class="fade-in delay-3"> | |
| <div class="text-4xl font-bold gradient-text mb-2">12</div> | |
| <p class="text-gray-600">Team Members</p> | |
| </div> | |
| <div class="fade-in delay-4"> | |
| <div class="text-4xl font-bold gradient-text mb-2">5</div> | |
| <p class="text-gray-600">Years Experience</p> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Services Section --> | |
| <section id="services" class="py-20 bg-gray-50"> | |
| <div class="container mx-auto px-6"> | |
| <div class="text-center mb-16 fade-in"> | |
| <h2 class="text-3xl md:text-4xl font-bold mb-4">Our <span class="gradient-text">Services</span></h2> | |
| <p class="max-w-2xl mx-auto text-gray-600">We offer comprehensive digital solutions to help your business thrive in the online world.</p> | |
| </div> | |
| <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8"> | |
| <div class="bg-white p-8 rounded-xl shadow-md hover:shadow-lg transition fade-in delay-1"> | |
| <div class="w-14 h-14 bg-blue-100 rounded-lg flex items-center justify-center mb-6"> | |
| <i class="fas fa-code text-blue-600 text-2xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Web Development</h3> | |
| <p class="text-gray-600">Custom websites built with modern technologies to ensure performance, security, and scalability.</p> | |
| </div> | |
| <div class="bg-white p-8 rounded-xl shadow-md hover:shadow-lg transition fade-in delay-2"> | |
| <div class="w-14 h-14 bg-purple-100 rounded-lg flex items-center justify-center mb-6"> | |
| <i class="fas fa-paint-brush text-purple-600 text-2xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">UI/UX Design</h3> | |
| <p class="text-gray-600">Beautiful, intuitive interfaces designed to enhance user experience and drive engagement.</p> | |
| </div> | |
| <div class="bg-white p-8 rounded-xl shadow-md hover:shadow-lg transition fade-in delay-3"> | |
| <div class="w-14 h-14 bg-green-100 rounded-lg flex items-center justify-center mb-6"> | |
| <i class="fas fa-mobile-alt text-green-600 text-2xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Mobile Apps</h3> | |
| <p class="text-gray-600">Cross-platform mobile applications that deliver seamless experiences across all devices.</p> | |
| </div> | |
| <div class="bg-white p-8 rounded-xl shadow-md hover:shadow-lg transition fade-in delay-1"> | |
| <div class="w-14 h-14 bg-yellow-100 rounded-lg flex items-center justify-center mb-6"> | |
| <i class="fas fa-search-dollar text-yellow-600 text-2xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">SEO Optimization</h3> | |
| <p class="text-gray-600">Strategies to improve your search rankings and drive organic traffic to your website.</p> | |
| </div> | |
| <div class="bg-white p-8 rounded-xl shadow-md hover:shadow-lg transition fade-in delay-2"> | |
| <div class="w-14 h-14 bg-red-100 rounded-lg flex items-center justify-center mb-6"> | |
| <i class="fas fa-shopping-cart text-red-600 text-2xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">E-Commerce</h3> | |
| <p class="text-gray-600">Complete online store solutions with secure payment gateways and inventory management.</p> | |
| </div> | |
| <div class="bg-white p-8 rounded-xl shadow-md hover:shadow-lg transition fade-in delay-3"> | |
| <div class="w-14 h-14 bg-indigo-100 rounded-lg flex items-center justify-center mb-6"> | |
| <i class="fas fa-chart-line text-indigo-600 text-2xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Digital Marketing</h3> | |
| <p class="text-gray-600">Comprehensive marketing strategies to grow your online presence and customer base.</p> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Portfolio Section --> | |
| <section id="portfolio" class="py-20 bg-white"> | |
| <div class="container mx-auto px-6"> | |
| <div class="text-center mb-16 fade-in"> | |
| <h2 class="text-3xl md:text-4xl font-bold mb-4">Our <span class="gradient-text">Portfolio</span></h2> | |
| <p class="max-w-2xl mx-auto text-gray-600">Explore some of our recent projects and see how we've helped businesses like yours succeed.</p> | |
| </div> | |
| <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-6"> | |
| <!-- Project 1 --> | |
| <div class="project-card relative rounded-xl overflow-hidden fade-in delay-1"> | |
| <img src="https://images.unsplash.com/photo-1547658719-da2b51169166?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1528&q=80" alt="E-commerce website" class="w-full h-64 object-cover"> | |
| <div class="project-overlay absolute inset-0 bg-gradient-to-t from-black to-transparent flex flex-col justify-end p-6"> | |
| <h3 class="text-white text-xl font-bold mb-2">Luxe Fashion</h3> | |
| <p class="text-gray-200 mb-4">E-commerce platform for a premium fashion brand</p> | |
| <a href="#" class="text-white font-medium hover:underline">View Case Study →</a> | |
| </div> | |
| </div> | |
| <!-- Project 2 --> | |
| <div class="project-card relative rounded-xl overflow-hidden fade-in delay-2"> | |
| <img src="https://images.unsplash.com/photo-1559028012-481c04fa702d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1536&q=80" alt="Mobile app" class="w-full h-64 object-cover"> | |
| <div class="project-overlay absolute inset-0 bg-gradient-to-t from-black to-transparent flex flex-col justify-end p-6"> | |
| <h3 class="text-white text-xl font-bold mb-2">FitTrack App</h3> | |
| <p class="text-gray-200 mb-4">Fitness tracking mobile application</p> | |
| <a href="#" class="text-white font-medium hover:underline">View Case Study →</a> | |
| </div> | |
| </div> | |
| <!-- Project 3 --> | |
| <div class="project-card relative rounded-xl overflow-hidden fade-in delay-3"> | |
| <img src="https://images.unsplash.com/photo-1467232004584-a241de8bcf5d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1469&q=80" alt="Corporate website" class="w-full h-64 object-cover"> | |
| <div class="project-overlay absolute inset-0 bg-gradient-to-t from-black to-transparent flex flex-col justify-end p-6"> | |
| <h3 class="text-white text-xl font-bold mb-2">Horizon Capital</h3> | |
| <p class="text-gray-200 mb-4">Corporate website for investment firm</p> | |
| <a href="#" class="text-white font-medium hover:underline">View Case Study →</a> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="text-center mt-12 fade-in delay-4"> | |
| <a href="#" class="inline-block border-2 border-gray-300 px-6 py-3 rounded-lg font-medium hover:bg-gray-100 transition">View All Projects</a> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Testimonials Section --> | |
| <section class="py-20 bg-gray-50"> | |
| <div class="container mx-auto px-6"> | |
| <div class="text-center mb-16 fade-in"> | |
| <h2 class="text-3xl md:text-4xl font-bold mb-4">Client <span class="gradient-text">Testimonials</span></h2> | |
| <p class="max-w-2xl mx-auto text-gray-600">Don't just take our word for it. Here's what our clients have to say.</p> | |
| </div> | |
| <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8"> | |
| <div class="bg-white p-8 rounded-xl shadow-md fade-in delay-1"> | |
| <div class="flex items-center mb-4"> | |
| <div class="text-yellow-400 mr-2"> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| </div> | |
| </div> | |
| <p class="text-gray-600 mb-6">"Nexus transformed our online presence completely. Our website traffic has increased by 300% since launch, and the user experience is phenomenal."</p> | |
| <div class="flex items-center"> | |
| <img src="https://randomuser.me/api/portraits/women/43.jpg" alt="Sarah Johnson" class="w-12 h-12 rounded-full mr-4"> | |
| <div> | |
| <h4 class="font-bold">Sarah Johnson</h4> | |
| <p class="text-gray-500 text-sm">CEO, TechSolutions</p> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="bg-white p-8 rounded-xl shadow-md fade-in delay-2"> | |
| <div class="flex items-center mb-4"> | |
| <div class="text-yellow-400 mr-2"> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| </div> | |
| </div> | |
| <p class="text-gray-600 mb-6">"The mobile app Nexus developed for us exceeded all expectations. Their attention to detail and user experience focus is unmatched in the industry."</p> | |
| <div class="flex items-center"> | |
| <img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Michael Chen" class="w-12 h-12 rounded-full mr-4"> | |
| <div> | |
| <h4 class="font-bold">Michael Chen</h4> | |
| <p class="text-gray-500 text-sm">Founder, FitTrack</p> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="bg-white p-8 rounded-xl shadow-md fade-in delay-3"> | |
| <div class="flex items-center mb-4"> | |
| <div class="text-yellow-400 mr-2"> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star-half-alt"></i> | |
| </div> | |
| </div> | |
| <p class="text-gray-600 mb-6">"Working with Nexus was a game-changer for our e-commerce business. They delivered on time, within budget, and the results speak for themselves."</p> | |
| <div class="flex items-center"> | |
| <img src="https://randomuser.me/api/portraits/women/65.jpg" alt="Emily Rodriguez" class="w-12 h-12 rounded-full mr-4"> | |
| <div> | |
| <h4 class="font-bold">Emily Rodriguez</h4> | |
| <p class="text-gray-500 text-sm">Marketing Director, Luxe Fashion</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- About Section --> | |
| <section id="about" class="py-20 bg-white"> | |
| <div class="container mx-auto px-6"> | |
| <div class="flex flex-col md:flex-row items-center"> | |
| <div class="md:w-1/2 mb-10 md:mb-0 fade-in"> | |
| <img src="https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Our team" class="rounded-xl shadow-xl w-full h-auto"> | |
| </div> | |
| <div class="md:w-1/2 md:pl-12 fade-in delay-1"> | |
| <h2 class="text-3xl md:text-4xl font-bold mb-6">About <span class="gradient-text">Nexus</span></h2> | |
| <p class="text-gray-600 mb-6">Founded in 2018, Nexus has grown from a small team of passionate developers to a full-service digital agency with clients across multiple industries.</p> | |
| <p class="text-gray-600 mb-8">We believe in creating digital solutions that not only look beautiful but also drive real business results. Our approach combines cutting-edge technology with thoughtful design and strategic thinking.</p> | |
| <div class="grid grid-cols-2 gap-6 mb-8"> | |
| <div class="flex items-center"> | |
| <div class="w-10 h-10 bg-blue-100 rounded-lg flex items-center justify-center mr-4"> | |
| <i class="fas fa-lightbulb text-blue-600"></i> | |
| </div> | |
| <div> | |
| <h4 class="font-bold">Innovative</h4> | |
| <p class="text-gray-500 text-sm">Always pushing boundaries</p> | |
| </div> | |
| </div> | |
| <div class="flex items-center"> | |
| <div class="w-10 h-10 bg-purple-100 rounded-lg flex items-center justify-center mr-4"> | |
| <i class="fas fa-heart text-purple-600"></i> | |
| </div> | |
| <div> | |
| <h4 class="font-bold">Passionate</h4> | |
| <p class="text-gray-500 text-sm">We love what we do</p> | |
| </div> | |
| </div> | |
| <div class="flex items-center"> | |
| <div class="w-10 h-10 bg-green-100 rounded-lg flex items-center justify-center mr-4"> | |
| <i class="fas fa-bullseye text-green-600"></i> | |
| </div> | |
| <div> | |
| <h4 class="font-bold">Focused</h4> | |
| <p class="text-gray-500 text-sm">Results-driven approach</p> | |
| </div> | |
| </div> | |
| <div class="flex items-center"> | |
| <div class="w-10 h-10 bg-yellow-100 rounded-lg flex items-center justify-center mr-4"> | |
| <i class="fas fa-users text-yellow-600"></i> | |
| </div> | |
| <div> | |
| <h4 class="font-bold">Collaborative</h4> | |
| <p class="text-gray-500 text-sm">Partners in your success</p> | |
| </div> | |
| </div> | |
| </div> | |
| <a href="#contact" class="inline-block bg-gradient-to-r from-blue-600 to-purple-600 text-white px-6 py-3 rounded-lg font-medium hover:opacity-90 transition">Meet Our Team</a> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Contact Section --> | |
| <section id="contact" class="py-20 bg-gray-50"> | |
| <div class="container mx-auto px-6"> | |
| <div class="text-center mb-16 fade-in"> | |
| <h2 class="text-3xl md:text-4xl font-bold mb-4">Get In <span class="gradient-text">Touch</span></h2> | |
| <p class="max-w-2xl mx-auto text-gray-600">Ready to start your project? We'd love to hear from you.</p> | |
| </div> | |
| <div class="flex flex-col md:flex-row"> | |
| <div class="md:w-1/2 mb-10 md:mb-0 md:pr-8 fade-in"> | |
| <form class="bg-white p-8 rounded-xl shadow-md"> | |
| <div class="mb-6"> | |
| <label for="name" class="block text-gray-700 font-medium mb-2">Your Name</label> | |
| <input type="text" id="name" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500"> | |
| </div> | |
| <div class="mb-6"> | |
| <label for="email" class="block text-gray-700 font-medium mb-2">Email Address</label> | |
| <input type="email" id="email" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500"> | |
| </div> | |
| <div class="mb-6"> | |
| <label for="subject" class="block text-gray-700 font-medium mb-2">Subject</label> | |
| <input type="text" id="subject" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500"> | |
| </div> | |
| <div class="mb-6"> | |
| <label for="message" class="block text-gray-700 font-medium mb-2">Message</label> | |
| <textarea id="message" rows="5" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500"></textarea> | |
| </div> | |
| <button type="submit" class="w-full bg-gradient-to-r from-blue-600 to-purple-600 text-white px-6 py-3 rounded-lg font-medium hover:opacity-90 transition">Send Message</button> | |
| </form> | |
| </div> | |
| <div class="md:w-1/2 md:pl-8 fade-in delay-1"> | |
| <div class="bg-white p-8 rounded-xl shadow-md h-full"> | |
| <h3 class="text-xl font-bold mb-6">Contact Information</h3> | |
| <div class="flex items-start mb-6"> | |
| <div class="w-10 h-10 bg-blue-100 rounded-lg flex items-center justify-center mr-4 mt-1"> | |
| <i class="fas fa-map-marker-alt text-blue-600"></i> | |
| </div> | |
| <div> | |
| <h4 class="font-bold">Our Office</h4> | |
| <p class="text-gray-600">123 Digital Avenue, Suite 400<br>San Francisco, CA 94103</p> | |
| </div> | |
| </div> | |
| <div class="flex items-start mb-6"> | |
| <div class="w-10 h-10 bg-purple-100 rounded-lg flex items-center justify-center mr-4 mt-1"> | |
| <i class="fas fa-envelope text-purple-600"></i> | |
| </div> | |
| <div> | |
| <h4 class="font-bold">Email Us</h4> | |
| <p class="text-gray-600">hello@nexusagency.com<br>support@nexusagency.com</p> | |
| </div> | |
| </div> | |
| <div class="flex items-start mb-6"> | |
| <div class="w-10 h-10 bg-green-100 rounded-lg flex items-center justify-center mr-4 mt-1"> | |
| <i class="fas fa-phone-alt text-green-600"></i> | |
| </div> | |
| <div> | |
| <h4 class="font-bold">Call Us</h4> | |
| <p class="text-gray-600">+1 (555) 123-4567<br>Mon-Fri, 9am-6pm PST</p> | |
| </div> | |
| </div> | |
| <div class="mt-10"> | |
| <h4 class="font-bold mb-4">Follow Us</h4> | |
| <div class="flex space-x-4"> | |
| <a href="#" class="w-10 h-10 bg-gray-100 rounded-full flex items-center justify-center hover:bg-blue-100 transition"> | |
| <i class="fab fa-facebook-f text-blue-600"></i> | |
| </a> | |
| <a href="#" class="w-10 h-10 bg-gray-100 rounded-full flex items-center justify-center hover:bg-blue-400 transition"> | |
| <i class="fab fa-twitter text-blue-400"></i> | |
| </a> | |
| <a href="#" class="w-10 h-10 bg-gray-100 rounded-full flex items-center justify-center hover:bg-pink-500 transition"> | |
| <i class="fab fa-instagram text-pink-500"></i> | |
| </a> | |
| <a href="#" class="w-10 h-10 bg-gray-100 rounded-full flex items-center justify-center hover:bg-blue-700 transition"> | |
| <i class="fab fa-linkedin-in text-blue-700"></i> | |
| </a> | |
| <a href="#" class="w-10 h-10 bg-gray-100 rounded-full flex items-center justify-center hover:bg-red-500 transition"> | |
| <i class="fab fa-youtube text-red-500"></i> | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Newsletter Section --> | |
| <section class="py-16 bg-gradient-to-r from-blue-600 to-purple-600 text-white"> | |
| <div class="container mx-auto px-6 text-center"> | |
| <h2 class="text-2xl md:text-3xl font-bold mb-4 fade-in">Subscribe to Our Newsletter</h2> | |
| <p class="max-w-2xl mx-auto mb-8 opacity-90 fade-in delay-1">Stay updated with our latest projects, industry insights, and special offers.</p> | |
| <form class="max-w-md mx-auto flex fade-in delay-2"> | |
| <input type="email" placeholder="Your email address" class="flex-grow px-4 py-3 rounded-l-lg focus:outline-none text-gray-800"> | |
| <button type="submit" class="bg-black text-white px-6 py-3 rounded-r-lg font-medium hover:bg-gray-900 transition">Subscribe</button> | |
| </form> | |
| </div> | |
| </section> | |
| <!-- Footer --> | |
| <footer class="bg-gray-900 text-white py-12"> | |
| <div class="container mx-auto px-6"> | |
| <div class="grid md:grid-cols-4 gap-8 mb-8"> | |
| <div> | |
| <h3 class="text-xl font-bold mb-4 gradient-text">Nexus</h3> | |
| <p class="text-gray-400">We create digital experiences that connect brands with their audiences and drive business growth.</p> | |
| </div> | |
| <div> | |
| <h4 class="font-bold mb-4">Quick Links</h4> | |
| <ul class="space-y-2"> | |
| <li><a href="#home" class="text-gray-400 hover:text-white transition">Home</a></li> | |
| <li><a href="#services" class="text-gray-400 hover:text-white transition">Services</a></li> | |
| <li><a href="#portfolio" class="text-gray-400 hover:text-white transition">Portfolio</a></li> | |
| <li><a href="#about" class="text-gray-400 hover:text-white transition">About Us</a></li> | |
| <li><a href="#contact" class="text-gray-400 hover:text-white transition">Contact</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="font-bold mb-4">Services</h4> | |
| <ul class="space-y-2"> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Web Development</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">UI/UX Design</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Mobile Apps</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">SEO Optimization</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Digital Marketing</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="font-bold mb-4">Contact</h4> | |
| <address class="not-italic text-gray-400"> | |
| <p class="mb-2">123 Digital Avenue</p> | |
| <p class="mb-2">San Francisco, CA 94103</p> | |
| <p class="mb-2">hello@nexusagency.com</p> | |
| <p>+1 (555) 123-4567</p> | |
| </address> | |
| </div> | |
| </div> | |
| <div class="border-t border-gray-800 pt-8 flex flex-col md:flex-row justify-between items-center"> | |
| <p class="text-gray-400 mb-4 md:mb-0">© 2023 Nexus Web Agency. All rights reserved.</p> | |
| <div class="flex space-x-6"> | |
| <a href="#" class="text-gray-400 hover:text-white transition">Privacy Policy</a> | |
| <a href="#" class="text-gray-400 hover:text-white transition">Terms of Service</a> | |
| <a href="#" class="text-gray-400 hover:text-white transition">Sitemap</a> | |
| </div> | |
| </div> | |
| </div> | |
| </footer> | |
| <!-- Back to Top Button --> | |
| <button id="back-to-top" class="fixed bottom-8 right-8 w-12 h-12 bg-blue-600 text-white rounded-full shadow-lg flex items-center justify-center opacity-0 invisible transition-all duration-300"> | |
| <i class="fas fa-arrow-up"></i> | |
| </button> | |
| <script> | |
| // Mobile menu toggle | |
| document.getElementById('menu-toggle').addEventListener('click', function() { | |
| const menu = document.getElementById('mobile-menu'); | |
| menu.classList.toggle('hidden'); | |
| }); | |
| // Smooth scrolling for navigation links | |
| document.querySelectorAll('a[href^="#"]').forEach(anchor => { | |
| anchor.addEventListener('click', function(e) { | |
| e.preventDefault(); | |
| const targetId = this.getAttribute('href'); | |
| const targetElement = document.querySelector(targetId); | |
| if (targetElement) { | |
| window.scrollTo({ | |
| top: targetElement.offsetTop - 80, | |
| behavior: 'smooth' | |
| }); | |
| // Close mobile menu if open | |
| const mobileMenu = document.getElementById('mobile-menu'); | |
| if (!mobileMenu.classList.contains('hidden')) { | |
| mobileMenu.classList.add('hidden'); | |
| } | |
| } | |
| }); | |
| }); | |
| // Back to top button | |
| const backToTopButton = document.getElementById('back-to-top'); | |
| window.addEventListener('scroll', function() { | |
| if (window.pageYOffset > 300) { | |
| backToTopButton.classList.remove('opacity-0', 'invisible'); | |
| backToTopButton.classList.add('opacity-100', 'visible'); | |
| } else { | |
| backToTopButton.classList.remove('opacity-100', 'visible'); | |
| backToTopButton.classList.add('opacity-0', 'invisible'); | |
| } | |
| }); | |
| backToTopButton.addEventListener('click', function() { | |
| window.scrollTo({ | |
| top: 0, | |
| behavior: 'smooth' | |
| }); | |
| }); | |
| // Add fade-in class to elements when they come into view | |
| const fadeElements = document.querySelectorAll('.fade-in'); | |
| const fadeInObserver = new IntersectionObserver((entries) => { | |
| entries.forEach(entry => { | |
| if (entry.isIntersecting) { | |
| entry.target.classList.add('opacity-100'); | |
| } | |
| }); | |
| }, { | |
| threshold: 0.1 | |
| }); | |
| fadeElements.forEach(element => { | |
| element.classList.add('opacity-0'); | |
| fadeInObserver.observe(element); | |
| }); | |
| // Navbar background change on scroll | |
| window.addEventListener('scroll', function() { | |
| const nav = document.querySelector('nav'); | |
| if (window.scrollY > 50) { | |
| nav.classList.add('bg-white', 'shadow-md'); | |
| } else { | |
| nav.classList.remove('bg-white', 'shadow-md'); | |
| } | |
| }); | |
| </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=Kamdle/twecba-site" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
| </html> |