Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Eng Cyprian Mati - Civil Engineering Services</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> | |
| .hero-gradient { | |
| background: linear-gradient(135deg, rgba(15,23,42,0.9) 0%, rgba(2,6,23,0.95) 100%); | |
| } | |
| .service-card:hover { | |
| transform: translateY(-5px); | |
| box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); | |
| } | |
| .contact-input:focus { | |
| outline: none; | |
| box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5); | |
| } | |
| </style> | |
| </head> | |
| <body class="bg-gray-900 text-gray-100 font-sans"> | |
| <!-- Navigation --> | |
| <nav class="bg-gray-800/90 backdrop-blur-md fixed w-full z-50 shadow-lg"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="flex items-center justify-between h-16"> | |
| <div class="flex items-center"> | |
| <div class="flex-shrink-0"> | |
| <span class="text-blue-400 font-bold text-xl flex items-center"> | |
| <i class="fas fa-ruler-combined mr-2"></i> | |
| Eng Cyprian Mati | |
| </span> | |
| </div> | |
| </div> | |
| <div class="hidden md:block"> | |
| <div class="ml-10 flex items-baseline space-x-4"> | |
| <a href="#home" class="px-3 py-2 rounded-md text-sm font-medium text-blue-300 hover:bg-gray-700 hover:text-white transition">Home</a> | |
| <a href="#services" class="px-3 py-2 rounded-md text-sm font-medium text-gray-300 hover:bg-gray-700 hover:text-white transition">Services</a> | |
| <a href="#projects" class="px-3 py-2 rounded-md text-sm font-medium text-gray-300 hover:bg-gray-700 hover:text-white transition">Projects</a> | |
| <a href="#about" class="px-3 py-2 rounded-md text-sm font-medium text-gray-300 hover:bg-gray-700 hover:text-white transition">About</a> | |
| <a href="#contact" class="px-3 py-2 rounded-md text-sm font-medium text-gray-300 hover:bg-gray-700 hover:text-white transition">Contact</a> | |
| </div> | |
| </div> | |
| <div class="md:hidden"> | |
| <button id="mobile-menu-button" class="text-gray-300 hover:text-white focus:outline-none"> | |
| <i class="fas fa-bars text-xl"></i> | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Mobile menu --> | |
| <div id="mobile-menu" class="hidden md:hidden bg-gray-800"> | |
| <div class="px-2 pt-2 pb-3 space-y-1 sm:px-3"> | |
| <a href="#home" class="block px-3 py-2 rounded-md text-base font-medium text-blue-300 hover:bg-gray-700 hover:text-white">Home</a> | |
| <a href="#services" class="block px-3 py-2 rounded-md text-base font-medium text-gray-300 hover:bg-gray-700 hover:text-white">Services</a> | |
| <a href="#projects" class="block px-3 py-2 rounded-md text-base font-medium text-gray-300 hover:bg-gray-700 hover:text-white">Projects</a> | |
| <a href="#about" class="block px-3 py-2 rounded-md text-base font-medium text-gray-300 hover:bg-gray-700 hover:text-white">About</a> | |
| <a href="#contact" class="block px-3 py-2 rounded-md text-base font-medium text-gray-300 hover:bg-gray-700 hover:text-white">Contact</a> | |
| </div> | |
| </div> | |
| </nav> | |
| <!-- Hero Section --> | |
| <section id="home" class="hero-gradient min-h-screen flex items-center pt-16"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-20"> | |
| <div class="grid md:grid-cols-2 gap-12 items-center"> | |
| <div class="text-center md:text-left"> | |
| <h1 class="text-4xl md:text-5xl lg:text-6xl font-bold mb-6"> | |
| Building <span class="text-blue-400">Tomorrow's</span> Infrastructure | |
| </h1> | |
| <p class="text-lg md:text-xl text-gray-300 mb-8"> | |
| Professional civil engineering services tailored to your construction needs. Quality, precision, and innovation in every project. | |
| </p> | |
| <div class="flex flex-col sm:flex-row gap-4 justify-center md:justify-start"> | |
| <a href="#contact" class="bg-blue-600 hover:bg-blue-700 text-white px-6 py-3 rounded-lg font-medium transition shadow-lg hover:shadow-blue-500/20"> | |
| Get a Quote | |
| </a> | |
| <a href="#services" class="border border-blue-400 text-blue-400 hover:bg-blue-400 hover:text-gray-900 px-6 py-3 rounded-lg font-medium transition"> | |
| Our Services | |
| </a> | |
| </div> | |
| </div> | |
| <div class="hidden md:block"> | |
| <div class="relative"> | |
| <div class="absolute -top-6 -left-6 w-full h-full border-2 border-blue-400 rounded-xl"></div> | |
| <img src="https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" | |
| alt="Construction Site" | |
| class="relative rounded-xl shadow-2xl w-full h-auto"> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Services Section --> | |
| <section id="services" class="py-20 bg-gray-800"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-3xl md:text-4xl font-bold mb-4">Our <span class="text-blue-400">Services</span></h2> | |
| <div class="w-20 h-1 bg-blue-500 mx-auto mb-6"></div> | |
| <p class="text-gray-400 max-w-2xl mx-auto"> | |
| Comprehensive civil engineering solutions designed to meet your project requirements with excellence and efficiency. | |
| </p> | |
| </div> | |
| <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8"> | |
| <!-- Service 1 --> | |
| <div class="service-card bg-gray-700 rounded-xl p-8 transition duration-300 shadow-lg hover:shadow-blue-500/10"> | |
| <div class="text-blue-400 mb-4"> | |
| <i class="fas fa-road text-4xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Road Construction</h3> | |
| <p class="text-gray-400"> | |
| Professional design and construction of roads, highways, and pavements using quality materials and modern techniques. | |
| </p> | |
| </div> | |
| <!-- Service 2 --> | |
| <div class="service-card bg-gray-700 rounded-xl p-8 transition duration-300 shadow-lg hover:shadow-blue-500/10"> | |
| <div class="text-blue-400 mb-4"> | |
| <i class="fas fa-building text-4xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Structural Engineering</h3> | |
| <p class="text-gray-400"> | |
| Structural analysis and design for residential, commercial, and industrial buildings ensuring safety and durability. | |
| </p> | |
| </div> | |
| <!-- Service 3 --> | |
| <div class="service-card bg-gray-700 rounded-xl p-8 transition duration-300 shadow-lg hover:shadow-blue-500/10"> | |
| <div class="text-blue-400 mb-4"> | |
| <i class="fas fa-tint text-4xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Water Systems</h3> | |
| <p class="text-gray-400"> | |
| Design and implementation of water supply systems, drainage, and sewage systems for optimal functionality. | |
| </p> | |
| </div> | |
| <!-- Service 4 --> | |
| <div class="service-card bg-gray-700 rounded-xl p-8 transition duration-300 shadow-lg hover:shadow-blue-500/10"> | |
| <div class="text-blue-400 mb-4"> | |
| <i class="fas fa-bridge text-4xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Bridge Construction</h3> | |
| <p class="text-gray-400"> | |
| Expert bridge design and construction services for all types of bridges with focus on structural integrity. | |
| </p> | |
| </div> | |
| <!-- Service 5 --> | |
| <div class="service-card bg-gray-700 rounded-xl p-8 transition duration-300 shadow-lg hover:shadow-blue-500/10"> | |
| <div class="text-blue-400 mb-4"> | |
| <i class="fas fa-map-marked-alt text-4xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Site Planning</h3> | |
| <p class="text-gray-400"> | |
| Comprehensive site evaluation and planning services to optimize land use and project feasibility. | |
| </p> | |
| </div> | |
| <!-- Service 6 --> | |
| <div class="service-card bg-gray-700 rounded-xl p-8 transition duration-300 shadow-lg hover:shadow-blue-500/10"> | |
| <div class="text-blue-400 mb-4"> | |
| <i class="fas fa-hard-hat text-4xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Construction Management</h3> | |
| <p class="text-gray-400"> | |
| Professional project management services ensuring projects are completed on time and within budget. | |
| </p> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Projects Section --> | |
| <section id="projects" class="py-20 bg-gray-900"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-3xl md:text-4xl font-bold mb-4">Our <span class="text-blue-400">Projects</span></h2> | |
| <div class="w-20 h-1 bg-blue-500 mx-auto mb-6"></div> | |
| <p class="text-gray-400 max-w-2xl mx-auto"> | |
| A showcase of our completed projects demonstrating our expertise and commitment to quality. | |
| </p> | |
| </div> | |
| <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-6"> | |
| <!-- Project 1 --> | |
| <div class="group relative overflow-hidden rounded-xl shadow-lg"> | |
| <img src="https://images.unsplash.com/photo-1605276374104-dee2a0ed3cd6?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" | |
| alt="Residential Complex" | |
| class="w-full h-64 object-cover transition duration-500 group-hover:scale-110"> | |
| <div class="absolute inset-0 bg-gradient-to-t from-gray-900/90 to-transparent flex items-end p-6"> | |
| <div> | |
| <h3 class="text-xl font-bold text-white">Green Valley Residential Complex</h3> | |
| <p class="text-blue-300">Nairobi, Kenya</p> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Project 2 --> | |
| <div class="group relative overflow-hidden rounded-xl shadow-lg"> | |
| <img src="https://images.unsplash.com/photo-1605100804763-247f67b3557e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" | |
| alt="Highway Construction" | |
| class="w-full h-64 object-cover transition duration-500 group-hover:scale-110"> | |
| <div class="absolute inset-0 bg-gradient-to-t from-gray-900/90 to-transparent flex items-end p-6"> | |
| <div> | |
| <h3 class="text-xl font-bold text-white">Mombasa Highway Expansion</h3> | |
| <p class="text-blue-300">Mombasa, Kenya</p> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Project 3 --> | |
| <div class="group relative overflow-hidden rounded-xl shadow-lg"> | |
| <img src="https://images.unsplash.com/photo-1600880292203-75704362ea02?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" | |
| alt="Commercial Building" | |
| class="w-full h-64 object-cover transition duration-500 group-hover:scale-110"> | |
| <div class="absolute inset-0 bg-gradient-to-t from-gray-900/90 to-transparent flex items-end p-6"> | |
| <div> | |
| <h3 class="text-xl font-bold text-white">Nairobi Business Plaza</h3> | |
| <p class="text-blue-300">Nairobi CBD, Kenya</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="text-center mt-12"> | |
| <a href="#" class="inline-flex items-center text-blue-400 hover:text-blue-300 font-medium"> | |
| View All Projects | |
| <i class="fas fa-arrow-right ml-2"></i> | |
| </a> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- About Section --> | |
| <section id="about" class="py-20 bg-gray-800"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="grid md:grid-cols-2 gap-12 items-center"> | |
| <div class="order-2 md:order-1"> | |
| <h2 class="text-3xl md:text-4xl font-bold mb-6">About <span class="text-blue-400">Eng Cyprian Mati</span></h2> | |
| <div class="w-20 h-1 bg-blue-500 mb-6"></div> | |
| <p class="text-gray-400 mb-4"> | |
| With over 15 years of experience in civil engineering, Eng Cyprian Mati has established himself as a trusted professional in the construction industry. His expertise spans across various sectors including residential, commercial, and infrastructure projects. | |
| </p> | |
| <p class="text-gray-400 mb-6"> | |
| Committed to excellence, Eng Mati combines technical knowledge with practical solutions to deliver projects that meet the highest standards of quality and safety. His approach focuses on sustainable and cost-effective engineering solutions. | |
| </p> | |
| <div class="space-y-3"> | |
| <div class="flex items-center"> | |
| <i class="fas fa-graduation-cap text-blue-400 mr-3"></i> | |
| <span class="text-gray-300">BSc. Civil Engineering - University of Nairobi</span> | |
| </div> | |
| <div class="flex items-center"> | |
| <i class="fas fa-award text-blue-400 mr-3"></i> | |
| <span class="text-gray-300">Registered Engineer - EBK</span> | |
| </div> | |
| <div class="flex items-center"> | |
| <i class="fas fa-medal text-blue-400 mr-3"></i> | |
| <span class="text-gray-300">10+ Industry Awards</span> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="order-1 md:order-2"> | |
| <div class="relative max-w-md mx-auto"> | |
| <div class="absolute -top-6 -right-6 w-full h-full border-2 border-blue-400 rounded-xl"></div> | |
| <img src="https://images.unsplash.com/photo-1581093450022-4b2a5a0c0f9d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" | |
| alt="Eng Cyprian Mati" | |
| class="relative rounded-xl shadow-2xl w-full h-auto"> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Contact Section --> | |
| <section id="contact" class="py-20 bg-gray-900"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-3xl md:text-4xl font-bold mb-4">Get In <span class="text-blue-400">Touch</span></h2> | |
| <div class="w-20 h-1 bg-blue-500 mx-auto mb-6"></div> | |
| <p class="text-gray-400 max-w-2xl mx-auto"> | |
| Have a project in mind? Contact us today for professional consultation and quote. | |
| </p> | |
| </div> | |
| <div class="grid md:grid-cols-2 gap-12"> | |
| <div> | |
| <form class="space-y-6"> | |
| <div> | |
| <label for="name" class="block text-sm font-medium text-gray-300 mb-1">Your Name</label> | |
| <input type="text" id="name" class="contact-input w-full bg-gray-800 border border-gray-700 rounded-lg px-4 py-3 text-gray-300 focus:border-blue-500 transition"> | |
| </div> | |
| <div> | |
| <label for="email" class="block text-sm font-medium text-gray-300 mb-1">Email Address</label> | |
| <input type="email" id="email" class="contact-input w-full bg-gray-800 border border-gray-700 rounded-lg px-4 py-3 text-gray-300 focus:border-blue-500 transition"> | |
| </div> | |
| <div> | |
| <label for="phone" class="block text-sm font-medium text-gray-300 mb-1">Phone Number</label> | |
| <input type="tel" id="phone" class="contact-input w-full bg-gray-800 border border-gray-700 rounded-lg px-4 py-3 text-gray-300 focus:border-blue-500 transition"> | |
| </div> | |
| <div> | |
| <label for="message" class="block text-sm font-medium text-gray-300 mb-1">Your Message</label> | |
| <textarea id="message" rows="5" class="contact-input w-full bg-gray-800 border border-gray-700 rounded-lg px-4 py-3 text-gray-300 focus:border-blue-500 transition"></textarea> | |
| </div> | |
| <button type="submit" class="w-full bg-blue-600 hover:bg-blue-700 text-white px-6 py-3 rounded-lg font-medium transition shadow-lg hover:shadow-blue-500/20"> | |
| Send Message | |
| </button> | |
| </form> | |
| </div> | |
| <div class="space-y-8"> | |
| <div class="bg-gray-800 rounded-xl p-8 shadow-lg"> | |
| <h3 class="text-xl font-bold text-blue-400 mb-4">Contact Information</h3> | |
| <div class="space-y-4"> | |
| <div class="flex items-start"> | |
| <i class="fas fa-envelope text-blue-400 mt-1 mr-4"></i> | |
| <div> | |
| <h4 class="font-medium text-gray-300">Email</h4> | |
| <a href="mailto:murikicyprian23@gmail.com" class="text-gray-400 hover:text-blue-400 transition">murikicyprian23@gmail.com</a> | |
| </div> | |
| </div> | |
| <div class="flex items-start"> | |
| <i class="fas fa-phone-alt text-blue-400 mt-1 mr-4"></i> | |
| <div> | |
| <h4 class="font-medium text-gray-300">Phone</h4> | |
| <a href="tel:0740598333" class="text-gray-400 hover:text-blue-400 transition">0740 598 333</a> | |
| </div> | |
| </div> | |
| <div class="flex items-start"> | |
| <i class="fas fa-map-marker-alt text-blue-400 mt-1 mr-4"></i> | |
| <div> | |
| <h4 class="font-medium text-gray-300">Location</h4> | |
| <p class="text-gray-400">Nairobi, Kenya</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="bg-gray-800 rounded-xl p-8 shadow-lg"> | |
| <h3 class="text-xl font-bold text-blue-400 mb-4">Business Hours</h3> | |
| <div class="space-y-3"> | |
| <div class="flex justify-between"> | |
| <span class="text-gray-300">Monday - Friday</span> | |
| <span class="text-gray-400">8:00 AM - 5:00 PM</span> | |
| </div> | |
| <div class="flex justify-between"> | |
| <span class="text-gray-300">Saturday</span> | |
| <span class="text-gray-400">9:00 AM - 1:00 PM</span> | |
| </div> | |
| <div class="flex justify-between"> | |
| <span class="text-gray-300">Sunday</span> | |
| <span class="text-gray-400">Closed</span> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Footer --> | |
| <footer class="bg-gray-800/90 backdrop-blur-md py-12 border-t border-gray-700"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="grid md:grid-cols-3 gap-8"> | |
| <div> | |
| <h3 class="text-xl font-bold text-blue-400 mb-4 flex items-center"> | |
| <i class="fas fa-ruler-combined mr-2"></i> | |
| Eng Cyprian Mati | |
| </h3> | |
| <p class="text-gray-400 mb-4"> | |
| Professional civil engineering services with a commitment to quality and innovation. | |
| </p> | |
| <div class="flex space-x-4"> | |
| <a href="#" class="text-gray-400 hover:text-blue-400 transition"> | |
| <i class="fab fa-facebook-f"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-blue-400 transition"> | |
| <i class="fab fa-twitter"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-blue-400 transition"> | |
| <i class="fab fa-linkedin-in"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-blue-400 transition"> | |
| <i class="fab fa-instagram"></i> | |
| </a> | |
| </div> | |
| </div> | |
| <div> | |
| <h3 class="text-lg font-bold text-gray-300 mb-4">Quick Links</h3> | |
| <ul class="space-y-2"> | |
| <li><a href="#home" class="text-gray-400 hover:text-blue-400 transition">Home</a></li> | |
| <li><a href="#services" class="text-gray-400 hover:text-blue-400 transition">Services</a></li> | |
| <li><a href="#projects" class="text-gray-400 hover:text-blue-400 transition">Projects</a></li> | |
| <li><a href="#about" class="text-gray-400 hover:text-blue-400 transition">About</a></li> | |
| <li><a href="#contact" class="text-gray-400 hover:text-blue-400 transition">Contact</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h3 class="text-lg font-bold text-gray-300 mb-4">Newsletter</h3> | |
| <p class="text-gray-400 mb-4"> | |
| Subscribe to our newsletter for the latest updates and project insights. | |
| </p> | |
| <form class="flex"> | |
| <input type="email" placeholder="Your email" class="bg-gray-700 text-gray-300 px-4 py-2 rounded-l-lg focus:outline-none focus:ring-1 focus:ring-blue-500 w-full"> | |
| <button type="submit" class="bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-r-lg transition"> | |
| <i class="fas fa-paper-plane"></i> | |
| </button> | |
| </form> | |
| </div> | |
| </div> | |
| <div class="border-t border-gray-700 mt-12 pt-8 text-center"> | |
| <p class="text-gray-500 text-sm"> | |
| © 2023 Eng Cyprian Mati - Civil Engineering Services. All rights reserved. | |
| </p> | |
| </div> | |
| </div> | |
| </footer> | |
| <script> | |
| // Mobile menu toggle | |
| document.getElementById('mobile-menu-button').addEventListener('click', function() { | |
| const menu = document.getElementById('mobile-menu'); | |
| menu.classList.toggle('hidden'); | |
| }); | |
| // Smooth scrolling for anchor 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) { | |
| // Close mobile menu if open | |
| const mobileMenu = document.getElementById('mobile-menu'); | |
| mobileMenu.classList.add('hidden'); | |
| // Scroll to target | |
| window.scrollTo({ | |
| top: targetElement.offsetTop - 80, | |
| behavior: 'smooth' | |
| }); | |
| } | |
| }); | |
| }); | |
| // Add shadow to navbar on scroll | |
| window.addEventListener('scroll', function() { | |
| const nav = document.querySelector('nav'); | |
| if (window.scrollY > 50) { | |
| nav.classList.add('shadow-xl'); | |
| nav.classList.remove('shadow-lg'); | |
| } else { | |
| nav.classList.remove('shadow-xl'); | |
| nav.classList.add('shadow-lg'); | |
| } | |
| }); | |
| </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=Michael254/website" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
| </html> |