Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Adarsh Bajpai | AI/ML Engineer | Developer | Designer</title> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet"> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> | |
| <style> | |
| body { | |
| font-family: 'Inter', sans-serif; | |
| scroll-behavior: smooth; | |
| } | |
| .gradient-text { | |
| background: linear-gradient(90deg, #3b82f6, #8b5cf6); | |
| -webkit-background-clip: text; | |
| background-clip: text; | |
| color: transparent; | |
| } | |
| .project-card:hover { | |
| transform: translateY(-5px); | |
| box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); | |
| } | |
| .timeline-item:not(:last-child)::after { | |
| content: ''; | |
| position: absolute; | |
| left: 7px; | |
| top: 24px; | |
| height: 100%; | |
| width: 2px; | |
| background: #e5e7eb; | |
| } | |
| .skill-icon { | |
| transition: all 0.3s ease; | |
| } | |
| .skill-icon:hover { | |
| transform: scale(1.1); | |
| } | |
| @keyframes fadeIn { | |
| from { opacity: 0; transform: translateY(20px); } | |
| to { opacity: 1; transform: translateY(0); } | |
| } | |
| .animate-fade-in { | |
| animation: fadeIn 0.8s ease forwards; | |
| } | |
| .delay-100 { animation-delay: 0.1s; } | |
| .delay-200 { animation-delay: 0.2s; } | |
| .delay-300 { animation-delay: 0.3s; } | |
| .delay-400 { animation-delay: 0.4s; } | |
| .delay-500 { animation-delay: 0.5s; } | |
| </style> | |
| </head> | |
| <body class="bg-gray-50 text-gray-800"> | |
| <!-- Navigation --> | |
| <nav class="fixed w-full bg-white bg-opacity-90 shadow-sm z-50"> | |
| <div class="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="flex justify-between h-16"> | |
| <div class="flex items-center"> | |
| <a href="#" class="text-xl font-bold gradient-text">Adarsh Bajpai</a> | |
| </div> | |
| <div class="hidden md:flex items-center space-x-8"> | |
| <a href="#about" class="text-gray-600 hover:text-blue-600 transition">About</a> | |
| <a href="#skills" class="text-gray-600 hover:text-blue-600 transition">Skills</a> | |
| <a href="#projects" class="text-gray-600 hover:text-blue-600 transition">Projects</a> | |
| <a href="#experience" class="text-gray-600 hover:text-blue-600 transition">Experience</a> | |
| <a href="#education" class="text-gray-600 hover:text-blue-600 transition">Education</a> | |
| <a href="#contact" class="text-gray-600 hover:text-blue-600 transition">Contact</a> | |
| </div> | |
| <div class="md:hidden flex items-center"> | |
| <button id="menu-toggle" class="text-gray-600 hover:text-blue-600"> | |
| <svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"> | |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16"></path> | |
| </svg> | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Mobile menu --> | |
| <div id="mobile-menu" class="hidden md:hidden bg-white py-2 px-4 shadow-lg"> | |
| <a href="#about" class="block py-2 text-gray-600 hover:text-blue-600 transition">About</a> | |
| <a href="#skills" class="block py-2 text-gray-600 hover:text-blue-600 transition">Skills</a> | |
| <a href="#projects" class="block py-2 text-gray-600 hover:text-blue-600 transition">Projects</a> | |
| <a href="#experience" class="block py-2 text-gray-600 hover:text-blue-600 transition">Experience</a> | |
| <a href="#education" class="block py-2 text-gray-600 hover:text-blue-600 transition">Education</a> | |
| <a href="#contact" class="block py-2 text-gray-600 hover:text-blue-600 transition">Contact</a> | |
| </div> | |
| </nav> | |
| <!-- Hero Section --> | |
| <section class="pt-32 pb-20 px-4 sm:px-6 lg:px-8 max-w-6xl mx-auto"> | |
| <div class="text-center"> | |
| <h1 class="text-4xl md:text-6xl font-bold mb-4 animate-fade-in"> | |
| <span class="gradient-text">Adarsh Bajpai</span> | |
| </h1> | |
| <h2 class="text-xl md:text-2xl text-gray-600 mb-8 animate-fade-in delay-100">AI/ML Engineer | Developer | Designer</h2> | |
| <p class="text-lg md:text-xl text-gray-600 max-w-3xl mx-auto mb-8 animate-fade-in delay-200"> | |
| Building AI solutions and modern web applications with smooth, polished experiences. | |
| </p> | |
| <div class="flex justify-center space-x-4 animate-fade-in delay-300"> | |
| <a href="#projects" class="px-6 py-3 bg-gradient-to-r from-blue-500 to-purple-600 text-white rounded-lg font-medium hover:opacity-90 transition"> | |
| View My Work | |
| </a> | |
| <a href="#contact" class="px-6 py-3 border border-gray-300 text-gray-700 rounded-lg font-medium hover:bg-gray-100 transition"> | |
| Contact Me | |
| </a> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- About Section --> | |
| <section id="about" class="py-20 px-4 sm:px-6 lg:px-8 max-w-6xl mx-auto bg-white rounded-xl shadow-sm"> | |
| <div class="flex flex-col md:flex-row items-center"> | |
| <div class="md:w-1/3 mb-8 md:mb-0 flex justify-center"> | |
| <div class="w-48 h-48 md:w-64 md:h-64 rounded-full overflow-hidden border-4 border-white shadow-lg"> | |
| <img src="https://via.placeholder.com/300" alt="Adarsh Bajpai" class="w-full h-full object-cover"> | |
| </div> | |
| </div> | |
| <div class="md:w-2/3 md:pl-12"> | |
| <h2 class="text-3xl font-bold mb-6 gradient-text">About Me</h2> | |
| <p class="text-gray-600 mb-4"> | |
| Hi, I'm Adarsh Bajpai, a Computer Science Engineering student specializing in Artificial Intelligence at NIIT University (2022–2026). | |
| </p> | |
| <p class="text-gray-600 mb-6"> | |
| I love building AI solutions and modern web applications with a smooth, polished experience. I merge deep learning expertise with UI/UX creativity, making projects that are both functional and visually engaging. | |
| </p> | |
| <div class="flex space-x-4"> | |
| <a href="#" class="px-4 py-2 bg-gray-100 text-gray-700 rounded-lg font-medium hover:bg-gray-200 transition flex items-center"> | |
| <i class="fas fa-file-download mr-2"></i> Download CV | |
| </a> | |
| <a href="#contact" class="px-4 py-2 border border-gray-300 text-gray-700 rounded-lg font-medium hover:bg-gray-100 transition flex items-center"> | |
| <i class="fas fa-envelope mr-2"></i> Contact Me | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Skills Section --> | |
| <section id="skills" class="py-20 px-4 sm:px-6 lg:px-8 max-w-6xl mx-auto"> | |
| <h2 class="text-3xl font-bold mb-12 text-center gradient-text">Skills</h2> | |
| <div class="grid grid-cols-2 md:grid-cols-4 gap-6"> | |
| <!-- Programming --> | |
| <div class="bg-white p-6 rounded-xl shadow-sm"> | |
| <h3 class="text-xl font-semibold mb-4 text-blue-600">Programming</h3> | |
| <div class="space-y-3"> | |
| <div class="flex items-center skill-icon"> | |
| <i class="fab fa-python text-2xl text-blue-500 mr-3"></i> | |
| <span>Python</span> | |
| </div> | |
| <div class="flex items-center skill-icon"> | |
| <i class="fab fa-js text-2xl text-yellow-500 mr-3"></i> | |
| <span>JavaScript</span> | |
| </div> | |
| <div class="flex items-center skill-icon"> | |
| <i class="fas fa-database text-2xl text-gray-500 mr-3"></i> | |
| <span>SQL</span> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- ML & Data Science --> | |
| <div class="bg-white p-6 rounded-xl shadow-sm"> | |
| <h3 class="text-xl font-semibold mb-4 text-purple-600">ML & Data Science</h3> | |
| <div class="space-y-3"> | |
| <div class="flex items-center skill-icon"> | |
| <i class="fas fa-brain text-2xl text-purple-500 mr-3"></i> | |
| <span>NumPy, Pandas</span> | |
| </div> | |
| <div class="flex items-center skill-icon"> | |
| <i class="fas fa-chart-line text-2xl text-green-500 mr-3"></i> | |
| <span>Matplotlib</span> | |
| </div> | |
| <div class="flex items-center skill-icon"> | |
| <i class="fas fa-eye text-2xl text-blue-400 mr-3"></i> | |
| <span>OpenCV</span> | |
| </div> | |
| <div class="flex items-center skill-icon"> | |
| <i class="fas fa-project-diagram text-2xl text-red-500 mr-3"></i> | |
| <span>ResNet, U2-Net, CNNs</span> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Frameworks & Tools --> | |
| <div class="bg-white p-6 rounded-xl shadow-sm"> | |
| <h3 class="text-xl font-semibold mb-4 text-green-600">Frameworks & Tools</h3> | |
| <div class="space-y-3"> | |
| <div class="flex items-center skill-icon"> | |
| <i class="fab fa-react text-2xl text-blue-400 mr-3"></i> | |
| <span>React</span> | |
| </div> | |
| <div class="flex items-center skill-icon"> | |
| <i class="fab fa-node-js text-2xl text-green-500 mr-3"></i> | |
| <span>Node.js</span> | |
| </div> | |
| <div class="flex items-center skill-icon"> | |
| <i class="fab fa-docker text-2xl text-blue-600 mr-3"></i> | |
| <span>Docker</span> | |
| </div> | |
| <div class="flex items-center skill-icon"> | |
| <i class="fab fa-github text-2xl text-gray-800 mr-3"></i> | |
| <span>Git/GitHub</span> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- UI/UX & Design --> | |
| <div class="bg-white p-6 rounded-xl shadow-sm"> | |
| <h3 class="text-xl font-semibold mb-4 text-pink-600">UI/UX & Design</h3> | |
| <div class="space-y-3"> | |
| <div class="flex items-center skill-icon"> | |
| <i class="fas fa-paint-brush text-2xl text-pink-500 mr-3"></i> | |
| <span>Figma</span> | |
| </div> | |
| <div class="flex items-center skill-icon"> | |
| <i class="fas fa-pencil-ruler text-2xl text-orange-500 mr-3"></i> | |
| <span>Wireframing</span> | |
| </div> | |
| <div class="flex items-center skill-icon"> | |
| <i class="fas fa-photo-video text-2xl text-blue-400 mr-3"></i> | |
| <span>Adobe Creative Suite</span> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Projects Section --> | |
| <section id="projects" class="py-20 px-4 sm:px-6 lg:px-8 max-w-6xl mx-auto bg-gray-50"> | |
| <h2 class="text-3xl font-bold mb-12 text-center gradient-text">Projects</h2> | |
| <div class="grid grid-cols-1 md:grid-cols-2 gap-8"> | |
| <!-- Project 1 --> | |
| <div class="project-card bg-white rounded-xl shadow-sm overflow-hidden transition duration-300"> | |
| <div class="h-48 bg-gradient-to-r from-blue-100 to-purple-100 flex items-center justify-center"> | |
| <i class="fas fa-leaf text-6xl text-green-500"></i> | |
| </div> | |
| <div class="p-6"> | |
| <h3 class="text-xl font-bold mb-2">Leaf Disease Detection System</h3> | |
| <p class="text-gray-600 mb-4"> | |
| Built a deep learning model using U2-Net + ResNet for detecting crop diseases and estimating severity. Extended into a web app with bilingual results (English/Hindi), image upload/capture, severity scoring, and farmer-friendly guidance. | |
| </p> | |
| <div class="flex flex-wrap gap-2 mb-4"> | |
| <span class="px-3 py-1 bg-blue-100 text-blue-800 text-sm rounded-full">Python</span> | |
| <span class="px-3 py-1 bg-green-100 text-green-800 text-sm rounded-full">Deep Learning</span> | |
| <span class="px-3 py-1 bg-purple-100 text-purple-800 text-sm rounded-full">U2-Net</span> | |
| <span class="px-3 py-1 bg-yellow-100 text-yellow-800 text-sm rounded-full">ResNet</span> | |
| </div> | |
| <a href="#" class="text-blue-600 hover:text-blue-800 font-medium flex items-center"> | |
| View Project <i class="fas fa-arrow-right ml-2"></i> | |
| </a> | |
| </div> | |
| </div> | |
| <!-- Project 2 --> | |
| <div class="project-card bg-white rounded-xl shadow-sm overflow-hidden transition duration-300"> | |
| <div class="h-48 bg-gradient-to-r from-green-100 to-blue-100 flex items-center justify-center"> | |
| <i class="fas fa-spa text-6xl text-teal-500"></i> | |
| </div> | |
| <div class="p-6"> | |
| <h3 class="text-xl font-bold mb-2">Zen Garden – Habit Tracker</h3> | |
| <p class="text-gray-600 mb-4"> | |
| A productivity app that gamifies habit formation with an interactive 3D garden. Features: integrated analytics, to-do list, finance tracker, and focus pomodoro mode. Frontend created with React + Framer Motion for smooth animations. | |
| </p> | |
| <div class="flex flex-wrap gap-2 mb-4"> | |
| <span class="px-3 py-1 bg-blue-100 text-blue-800 text-sm rounded-full">React</span> | |
| <span class="px-3 py-1 bg-purple-100 text-purple-800 text-sm rounded-full">Framer Motion</span> | |
| <span class="px-3 py-1 bg-green-100 text-green-800 text-sm rounded-full">Productivity</span> | |
| <span class="px-3 py-1 bg-red-100 text-red-800 text-sm rounded-full">3D Animation</span> | |
| </div> | |
| <a href="#" class="text-blue-600 hover:text-blue-800 font-medium flex items-center"> | |
| View Project <i class="fas fa-arrow-right ml-2"></i> | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Experience Section --> | |
| <section id="experience" class="py-20 px-4 sm:px-6 lg:px-8 max-w-6xl mx-auto"> | |
| <h2 class="text-3xl font-bold mb-12 text-center gradient-text">Experience</h2> | |
| <div class="space-y-8 max-w-3xl mx-auto"> | |
| <!-- Experience 1 --> | |
| <div class="relative pl-8 timeline-item"> | |
| <div class="absolute left-0 top-0 w-4 h-4 rounded-full bg-blue-500 border-4 border-blue-100"></div> | |
| <div class="bg-white p-6 rounded-xl shadow-sm"> | |
| <h3 class="text-xl font-bold mb-1">Event Organisation Team</h3> | |
| <p class="text-gray-600 mb-2">NIIT University (2 years)</p> | |
| <p class="text-gray-700"> | |
| Managed convocations, cultural fests & parent visits. Coordinated logistics, vendors, and on-ground operations for large-scale university events. | |
| </p> | |
| </div> | |
| </div> | |
| <!-- Experience 2 --> | |
| <div class="relative pl-8 timeline-item"> | |
| <div class="absolute left-0 top-0 w-4 h-4 rounded-full bg-purple-500 border-4 border-purple-100"></div> | |
| <div class="bg-white p-6 rounded-xl shadow-sm"> | |
| <h3 class="text-xl font-bold mb-1">Production Team</h3> | |
| <p class="text-gray-600 mb-2">TEDx NIIT University</p> | |
| <p class="text-gray-700"> | |
| Coordinated logistics, vendors, and on-ground staff for TEDx events. Managed stage setup, audio-visual equipment, and speaker requirements. | |
| </p> | |
| </div> | |
| </div> | |
| <!-- Experience 3 --> | |
| <div class="relative pl-8 timeline-item"> | |
| <div class="absolute left-0 top-0 w-4 h-4 rounded-full bg-green-500 border-4 border-green-100"></div> | |
| <div class="bg-white p-6 rounded-xl shadow-sm"> | |
| <h3 class="text-xl font-bold mb-1">Designer</h3> | |
| <p class="text-gray-600 mb-2">Vividha Art Club</p> | |
| <p class="text-gray-700"> | |
| Created digital assets, stage designs, and led design execution for university events. Developed branding materials and promotional content. | |
| </p> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Education Section --> | |
| <section id="education" class="py-20 px-4 sm:px-6 lg:px-8 max-w-6xl mx-auto bg-white rounded-xl shadow-sm"> | |
| <h2 class="text-3xl font-bold mb-12 text-center gradient-text">Education</h2> | |
| <div class="grid grid-cols-1 md:grid-cols-3 gap-6"> | |
| <!-- Education 1 --> | |
| <div class="bg-gray-50 p-6 rounded-lg"> | |
| <h3 class="text-xl font-bold mb-2 text-blue-600">B.Tech CSE (AI Specialisation)</h3> | |
| <p class="text-gray-600 mb-2">NIIT University</p> | |
| <p class="text-gray-500">2022–2026</p> | |
| </div> | |
| <!-- Education 2 --> | |
| <div class="bg-gray-50 p-6 rounded-lg"> | |
| <h3 class="text-xl font-bold mb-2 text-purple-600">XII</h3> | |
| <p class="text-gray-600 mb-2">JVP Public School, Jaipur (CBSE)</p> | |
| <p class="text-gray-500">2022</p> | |
| </div> | |
| <!-- Education 3 --> | |
| <div class="bg-gray-50 p-6 rounded-lg"> | |
| <h3 class="text-xl font-bold mb-2 text-green-600">X</h3> | |
| <p class="text-gray-600 mb-2">St. Anselm's School, Jaipur (CBSE)</p> | |
| <p class="text-gray-500">2020</p> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Contact Section --> | |
| <section id="contact" class="py-20 px-4 sm:px-6 lg:px-8 max-w-6xl mx-auto"> | |
| <h2 class="text-3xl font-bold mb-12 text-center gradient-text">Get In Touch</h2> | |
| <div class="bg-white rounded-xl shadow-sm p-8 max-w-3xl mx-auto"> | |
| <div class="grid grid-cols-1 md:grid-cols-2 gap-8"> | |
| <div> | |
| <h3 class="text-xl font-semibold mb-4">Contact Information</h3> | |
| <ul class="space-y-4"> | |
| <li class="flex items-center"> | |
| <i class="fas fa-envelope text-blue-500 mr-3 text-xl"></i> | |
| <a href="mailto:adarsh.bajpai22@st.niituniversity.in" class="text-gray-600 hover:text-blue-600 transition">adarsh.bajpai22@st.niituniversity.in</a> | |
| </li> | |
| <li class="flex items-center"> | |
| <i class="fab fa-linkedin text-blue-700 mr-3 text-xl"></i> | |
| <a href="https://linkedin.com/in/adarsh-bajpai-9449332b6" target="_blank" class="text-gray-600 hover:text-blue-600 transition">linkedin.com/in/adarsh-bajpai</a> | |
| </li> | |
| <li class="flex items-center"> | |
| <i class="fab fa-github text-gray-800 mr-3 text-xl"></i> | |
| <a href="https://github.com/nameadarsh" target="_blank" class="text-gray-600 hover:text-blue-600 transition">github.com/nameadarsh</a> | |
| </li> | |
| <li class="flex items-center"> | |
| <i class="fas fa-globe text-purple-500 mr-3 text-xl"></i> | |
| <a href="https://nameadarsh.github.io/Portfolio" target="_blank" class="text-gray-600 hover:text-blue-600 transition">nameadarsh.github.io/Portfolio</a> | |
| </li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h3 class="text-xl font-semibold mb-4">Send Me a Message</h3> | |
| <form> | |
| <div class="mb-4"> | |
| <label for="name" class="block text-gray-700 mb-2">Name</label> | |
| <input type="text" id="name" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500"> | |
| </div> | |
| <div class="mb-4"> | |
| <label for="email" class="block text-gray-700 mb-2">Email</label> | |
| <input type="email" id="email" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500"> | |
| </div> | |
| <div class="mb-4"> | |
| <label for="message" class="block text-gray-700 mb-2">Message</label> | |
| <textarea id="message" rows="3" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500"></textarea> | |
| </div> | |
| <button type="submit" class="px-6 py-3 bg-gradient-to-r from-blue-500 to-purple-600 text-white rounded-lg font-medium hover:opacity-90 transition w-full"> | |
| Send Message | |
| </button> | |
| </form> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Footer --> | |
| <footer class="py-8 bg-gray-100"> | |
| <div class="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8 text-center"> | |
| <p class="text-gray-600 mb-4">© 2023 Adarsh Bajpai. All rights reserved.</p> | |
| <div class="flex justify-center space-x-6"> | |
| <a href="mailto:adarsh.bajpai22@st.niituniversity.in" class="text-gray-500 hover:text-blue-600"> | |
| <i class="fas fa-envelope text-xl"></i> | |
| </a> | |
| <a href="https://linkedin.com/in/adarsh-bajpai-9449332b6" target="_blank" class="text-gray-500 hover:text-blue-700"> | |
| <i class="fab fa-linkedin text-xl"></i> | |
| </a> | |
| <a href="https://github.com/nameadarsh" target="_blank" class="text-gray-500 hover:text-gray-800"> | |
| <i class="fab fa-github text-xl"></i> | |
| </a> | |
| </div> | |
| </div> | |
| </footer> | |
| <script> | |
| // Mobile menu toggle | |
| document.getElementById('menu-toggle').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'); | |
| if (!mobileMenu.classList.contains('hidden')) { | |
| mobileMenu.classList.add('hidden'); | |
| } | |
| // Scroll to target | |
| window.scrollTo({ | |
| top: targetElement.offsetTop - 80, | |
| behavior: 'smooth' | |
| }); | |
| } | |
| }); | |
| }); | |
| // Add animation classes when elements come into view | |
| const observerOptions = { | |
| threshold: 0.1 | |
| }; | |
| const observer = new IntersectionObserver((entries) => { | |
| entries.forEach(entry => { | |
| if (entry.isIntersecting) { | |
| entry.target.classList.add('animate-fade-in'); | |
| } | |
| }); | |
| }, observerOptions); | |
| document.querySelectorAll('section').forEach(section => { | |
| observer.observe(section); | |
| }); | |
| </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=nameadarsh/aabb" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
| </html> |