portfolio-website / index.html
Tesneem's picture
Update index.html
b169f41 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tesneem | Portfolio</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>
.gradient-text {
background: linear-gradient(90deg, #10b981, #3b82f6);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.skill-badge {
transition: all 0.3s ease;
}
.skill-badge:hover {
transform: translateY(-3px);
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.project-card {
transition: all 0.3s ease;
}
.project-card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.timeline-item:not(:last-child)::after {
content: '';
position: absolute;
left: 7px;
top: 24px;
height: calc(100% - 24px);
width: 2px;
background-color: #d1fae5;
}
.nav-link {
position: relative;
}
.nav-link::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: -2px;
left: 0;
background-color: #10b981;
transition: width 0.3s ease;
}
.nav-link:hover::after {
width: 100%;
}
.active::after {
width: 100%;
}
</style>
</head>
<body class="bg-gray-50 text-gray-800 font-sans">
<!-- Navigation -->
<nav class="bg-white shadow-sm sticky top-0 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">
<span class="text-xl font-bold gradient-text">Tesneem</span>
</div>
<div class="hidden md:flex items-center space-x-8">
<a href="#home" class="nav-link text-gray-700 hover:text-emerald-600">Home</a>
<a href="#about" class="nav-link text-gray-700 hover:text-emerald-600">About</a>
<a href="#experience" class="nav-link text-gray-700 hover:text-emerald-600">Experience</a>
<a href="#projects" class="nav-link text-gray-700 hover:text-emerald-600">Projects</a>
<a href="#contact" class="nav-link text-gray-700 hover:text-emerald-600">Contact</a>
</div>
<div class="md:hidden flex items-center">
<button id="menu-btn" class="text-gray-700 hover:text-emerald-600">
<i class="fas fa-bars text-xl"></i>
</button>
</div>
</div>
</div>
<!-- Mobile menu -->
<div id="mobile-menu" class="hidden md:hidden bg-white pb-3 px-4">
<a href="#home" class="block py-2 text-gray-700 hover:text-emerald-600">Home</a>
<a href="#about" class="block py-2 text-gray-700 hover:text-emerald-600">About</a>
<a href="#experience" class="block py-2 text-gray-700 hover:text-emerald-600">Experience</a>
<a href="#projects" class="block py-2 text-gray-700 hover:text-emerald-600">Projects</a>
<a href="#contact" class="block py-2 text-gray-700 hover:text-emerald-600">Contact</a>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="py-20 bg-gradient-to-r from-emerald-50 to-blue-50">
<div class="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0">
<h1 class="text-4xl md:text-5xl font-bold mb-4">Hi, I'm <span class="gradient-text">Tesneem</span></h1>
<h2 class="text-2xl md:text-3xl font-semibold text-gray-700 mb-6">Computer Science Graduate & Developer</h2>
<p class="text-lg text-gray-600 mb-8">Passionate about building scalable, user-centered solutions with expertise in full-stack development, machine learning, and mobile interfaces.</p>
<div class="flex space-x-4">
<a href="#projects" class="bg-emerald-600 hover:bg-emerald-700 text-white px-6 py-3 rounded-lg font-medium transition duration-300">View Projects</a>
<a href="#contact" class="border border-emerald-600 text-emerald-600 hover:bg-emerald-50 px-6 py-3 rounded-lg font-medium transition duration-300">Contact Me</a>
</div>
</div>
<div class="md:w-1/2 flex justify-center">
<div class="relative">
<div class="w-64 h-64 md:w-80 md:h-80 bg-emerald-100 rounded-full flex items-center justify-center">
<i class="fas fa-laptop-code text-6xl md:text-8xl text-emerald-600"></i>
</div>
<div class="absolute -bottom-4 -right-4 bg-white p-4 rounded-lg shadow-md">
<div class="flex items-center">
<div class="w-3 h-3 bg-emerald-400 rounded-full mr-2"></div>
<span class="text-sm font-medium">Currently working on AI projects</span>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-20 bg-white">
<div class="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8">
<h2 class="text-3xl font-bold text-center mb-12">About <span class="gradient-text">Me</span></h2>
<div class="flex flex-col md:flex-row">
<div class="md:w-1/2 mb-10 md:mb-0 md:pr-8">
<h3 class="text-2xl font-semibold mb-4">Who I Am</h3>
<p class="text-gray-600 mb-6">Recent Computer Science graduate from Macaulay Honors College at Hunter College with a 3.94 GPA and a strong foundation in Python, C++, and machine learning. Developed AI applications, including an image detector with 98% accuracy and a natural language-based dog playdate matching app.</p>
<p class="text-gray-600 mb-6">Passionate about building scalable, user-centered solutions and experienced in full-stack development, ML pipelines, and mobile interfaces.</p>
<div class="flex space-x-4">
<a href="#" class="bg-gray-100 hover:bg-gray-200 text-gray-800 px-4 py-2 rounded-lg font-medium transition duration-300 flex items-center">
<i class="fas fa-file-pdf mr-2"></i> Download CV
</a>
<a href="#contact" class="bg-emerald-600 hover:bg-emerald-700 text-white px-4 py-2 rounded-lg font-medium transition duration-300 flex items-center">
<i class="fas fa-paper-plane mr-2"></i> Contact Me
</a>
</div>
</div>
<div class="md:w-1/2">
<h3 class="text-2xl font-semibold mb-6">My <span class="gradient-text">Skills</span></h3>
<div class="mb-8">
<h4 class="text-lg font-medium mb-3">Programming Languages</h4>
<div class="flex flex-wrap gap-3">
<span class="skill-badge bg-emerald-100 text-emerald-800 px-3 py-1 rounded-full">Python</span>
<span class="skill-badge bg-emerald-100 text-emerald-800 px-3 py-1 rounded-full">C++</span>
<span class="skill-badge bg-emerald-100 text-emerald-800 px-3 py-1 rounded-full">JavaScript</span>
<span class="skill-badge bg-emerald-100 text-emerald-800 px-3 py-1 rounded-full">SQL</span>
<span class="skill-badge bg-emerald-100 text-emerald-800 px-3 py-1 rounded-full">HTML/CSS</span>
<span class="skill-badge bg-emerald-100 text-emerald-800 px-3 py-1 rounded-full">Dart</span>
</div>
</div>
<div class="mb-8">
<h4 class="text-lg font-medium mb-3">Frameworks & Libraries</h4>
<div class="flex flex-wrap gap-3">
<span class="skill-badge bg-blue-100 text-blue-800 px-3 py-1 rounded-full">TensorFlow</span>
<span class="skill-badge bg-blue-100 text-blue-800 px-3 py-1 rounded-full">React</span>
<span class="skill-badge bg-blue-100 text-blue-800 px-3 py-1 rounded-full">SwiftUI</span>
<span class="skill-badge bg-blue-100 text-blue-800 px-3 py-1 rounded-full">Pandas</span>
<span class="skill-badge bg-blue-100 text-blue-800 px-3 py-1 rounded-full">Flutter</span>
</div>
</div>
<div>
<h4 class="text-lg font-medium mb-3">Tools & Platforms</h4>
<div class="flex flex-wrap gap-3">
<span class="skill-badge bg-purple-100 text-purple-800 px-3 py-1 rounded-full">Firebase</span>
<span class="skill-badge bg-purple-100 text-purple-800 px-3 py-1 rounded-full">REST API</span>
<span class="skill-badge bg-purple-100 text-purple-800 px-3 py-1 rounded-full">Hugging Face</span>
<span class="skill-badge bg-purple-100 text-purple-800 px-3 py-1 rounded-full">Xcode</span>
<span class="skill-badge bg-purple-100 text-purple-800 px-3 py-1 rounded-full">Git/GitHub</span>
<span class="skill-badge bg-purple-100 text-purple-800 px-3 py-1 rounded-full">Linux</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Experience Section -->
<section id="experience" class="py-20 bg-gray-50">
<div class="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8">
<h2 class="text-3xl font-bold text-center mb-12">My <span class="gradient-text">Experience</span></h2>
<div class="relative">
<!-- Timeline -->
<div class="space-y-8">
<!-- CUNY Tech Prep -->
<div class="timeline-item relative pl-8">
<div class="absolute left-0 top-0 w-4 h-4 bg-emerald-400 rounded-full"></div>
<div class="bg-white p-6 rounded-lg shadow-sm">
<div class="flex flex-col md:flex-row md:justify-between md:items-center mb-4">
<h3 class="text-xl font-semibold">Data Science Fellow</h3>
<span class="text-emerald-600 font-medium">Jun 2024 - May 2025</span>
</div>
<h4 class="text-lg font-medium text-gray-700 mb-2">CUNY Tech Prep, New York, NY</h4>
<ul class="list-disc pl-5 text-gray-600 space-y-2">
<li>Selected for a competitive data science fellowship with students from across the 11 CUNY senior colleges</li>
<li>Create technical projects using tools such as Python 3, Jupyter Notebooks, Pandas, Numpy, Scikit-learn, and SQL</li>
<li>Participate in weekly courses and learn industry best practices for exploratory data analysis (EDA), feature engineering, and machine learning techniques</li>
</ul>
</div>
</div>
<!-- LinkedIn -->
<div class="timeline-item relative pl-8">
<div class="absolute left-0 top-0 w-4 h-4 bg-emerald-400 rounded-full"></div>
<div class="bg-white p-6 rounded-lg shadow-sm">
<div class="flex flex-col md:flex-row md:justify-between md:items-center mb-4">
<h3 class="text-xl font-semibold">Software Engineer Intern</h3>
<span class="text-emerald-600 font-medium">Jan 2025</span>
</div>
<h4 class="text-lg font-medium text-gray-700 mb-2">LinkedIn, New York, NY</h4>
<ul class="list-disc pl-5 text-gray-600 space-y-2">
<li>Collaborated with a team of five to develop a video-clipping app in three weeks in response to a user requested feature for the LI Events Team</li>
<li>Utilized ffmpeg.wasm and Next.js to create three editing modes: 30-sec clips, slider-based trimming, and time-stamp cutting</li>
<li>As the infrastructure engineer, integrated dependencies, set up ffmpeg.wasm, implemented the clipping and slider features, and enabled video playback within the selected range</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Projects Section -->
<section id="projects" class="py-20 bg-white">
<div class="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8">
<h2 class="text-3xl font-bold text-center mb-12">Featured <span class="gradient-text">Projects</span></h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Project 1 -->
<div class="project-card bg-white rounded-lg shadow-md overflow-hidden border border-gray-100">
<div class="h-48 bg-emerald-50 flex items-center justify-center">
<i class="fas fa-dog text-6xl text-emerald-600"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-2">PlayPaws</h3>
<p class="text-gray-600 mb-4">A puppy playdate app using Flutter and Python with a dog-matching algorithm using sentence-transformer embeddings.</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="bg-emerald-100 text-emerald-800 text-xs px-2 py-1 rounded">Flutter</span>
<span class="bg-emerald-100 text-emerald-800 text-xs px-2 py-1 rounded">Python</span>
<span class="bg-emerald-100 text-emerald-800 text-xs px-2 py-1 rounded">Firebase</span>
</div>
<a href="https://github.com/dinastyk/playpaws" class="text-emerald-600 hover:text-emerald-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-lg shadow-md overflow-hidden border border-gray-100">
<div class="h-48 bg-blue-50 flex items-center justify-center">
<i class="fas fa-robot text-6xl text-blue-600"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-2">AI vs Real Images</h3>
<p class="text-gray-600 mb-4">Machine learning models for detecting AI-generated versus real images with 98% accuracy on unseen data.</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="bg-blue-100 text-blue-800 text-xs px-2 py-1 rounded">Python</span>
<span class="bg-blue-100 text-blue-800 text-xs px-2 py-1 rounded">TensorFlow</span>
<span class="bg-blue-100 text-blue-800 text-xs px-2 py-1 rounded">Streamlit</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 3 -->
<div class="project-card bg-white rounded-lg shadow-md overflow-hidden border border-gray-100">
<div class="h-48 bg-purple-50 flex items-center justify-center">
<i class="fas fa-quran text-6xl text-purple-600"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-2">NoorQuran</h3>
<p class="text-gray-600 mb-4">An iOS app enabling users to read the Quran and track their memorization progress.</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="bg-purple-100 text-purple-800 text-xs px-2 py-1 rounded">SwiftUI</span>
<span class="bg-purple-100 text-purple-800 text-xs px-2 py-1 rounded">REST API</span>
<span class="bg-purple-100 text-purple-800 text-xs px-2 py-1 rounded">iOS</span>
</div>
<a href="#" class="text-purple-600 hover:text-purple-800 font-medium flex items-center">
View Project <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
<!-- Project 4 -->
<div class="project-card bg-white rounded-lg shadow-md overflow-hidden border border-gray-100">
<div class="h-48 bg-green-50 flex items-center justify-center">
<i class="fas fa-vr-cardboard text-6xl text-green-600"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-2">In the Dark</h3>
<p class="text-gray-600 mb-4">A VR horror game scene with a focus on interactivity and immersion developed using Unity.</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="bg-green-100 text-green-800 text-xs px-2 py-1 rounded">Unity</span>
<span class="bg-green-100 text-green-800 text-xs px-2 py-1 rounded">VR</span>
<span class="bg-green-100 text-green-800 text-xs px-2 py-1 rounded">C#</span>
</div>
<a href="#" class="text-green-600 hover:text-green-800 font-medium flex items-center">
View Project <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
<!-- Project 5 -->
<div class="project-card bg-white rounded-lg shadow-md overflow-hidden border border-gray-100">
<div class="h-48 bg-yellow-50 flex items-center justify-center">
<i class="fas fa-university text-6xl text-yellow-600"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-2">Campus Management System</h3>
<p class="text-gray-600 mb-4">A RESTful full-stack web application to manage students and campuses.</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="bg-yellow-100 text-yellow-800 text-xs px-2 py-1 rounded">React</span>
<span class="bg-yellow-100 text-yellow-800 text-xs px-2 py-1 rounded">Node.js</span>
<span class="bg-yellow-100 text-yellow-800 text-xs px-2 py-1 rounded">PostgreSQL</span>
</div>
<a href="#" class="text-yellow-600 hover:text-yellow-800 font-medium flex items-center">
View Project <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
<!-- Project 6 -->
<div class="project-card bg-white rounded-lg shadow-md overflow-hidden border border-gray-100">
<div class="h-48 bg-red-50 flex items-center justify-center">
<i class="fas fa-film text-6xl text-red-600"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-2">Netflix Recommendation System</h3>
<p class="text-gray-600 mb-4">Integrated Blip Image Model and Sentence Transformers to deliver tailored recommendations.</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="bg-red-100 text-red-800 text-xs px-2 py-1 rounded">Python</span>
<span class="bg-red-100 text-red-800 text-xs px-2 py-1 rounded">NLP</span>
<span class="bg-red-100 text-red-800 text-xs px-2 py-1 rounded">RAG</span>
</div>
<a href="#" class="text-red-600 hover:text-red-800 font-medium flex items-center">
View Project <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
</div>
<div class="text-center mt-12">
<a href="#" class="inline-flex items-center px-6 py-3 border border-emerald-600 text-emerald-600 rounded-lg hover:bg-emerald-50 transition duration-300">
<i class="fas fa-folder-open mr-2"></i> View All Projects
</a>
</div>
</div>
</section>
<!-- Education Section -->
<section class="py-20 bg-gray-50">
<div class="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8">
<h2 class="text-3xl font-bold text-center mb-12">My <span class="gradient-text">Education</span></h2>
<div class="bg-white rounded-lg shadow-sm p-8 max-w-3xl mx-auto">
<div class="flex items-start">
<div class="bg-emerald-100 p-4 rounded-full mr-6">
<i class="fas fa-graduation-cap text-emerald-600 text-2xl"></i>
</div>
<div>
<h3 class="text-xl font-bold mb-1">Macaulay Honors at Hunter College</h3>
<p class="text-gray-700 mb-2">Bachelor of Arts in Computer Science | GPA: 3.94/4.00</p>
<p class="text-gray-600 mb-4">Jun 2025</p>
<p class="text-gray-600">Relevant Coursework: Software Analysis & Design, Discrete Math, Computer Architecture, Operating Systems, Web Development, iOS Development, Digital Product Development, Computer Theory, Physics I, Calculus II, Matrix Algebra, Capstone, VR, AR, & MR</p>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-20 bg-white">
<div class="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8">
<h2 class="text-3xl font-bold text-center mb-12">Get In <span class="gradient-text">Touch</span></h2>
<div class="flex flex-col md:flex-row">
<div class="md:w-1/2 mb-10 md:mb-0 md:pr-8">
<h3 class="text-2xl font-semibold mb-4">Contact Information</h3>
<p class="text-gray-600 mb-6">Feel free to reach out to me for any questions or opportunities. I'm always open to discussing new projects, creative ideas or opportunities to be part of your vision.</p>
<div class="space-y-4">
<div class="flex items-center">
<div class="bg-emerald-100 p-3 rounded-full mr-4">
<i class="fas fa-envelope text-emerald-600"></i>
</div>
<div>
<h4 class="font-medium text-gray-700">Email</h4>
<p class="text-gray-600">[email protected]</p>
</div>
</div>
<div class="flex items-center">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-phone-alt text-blue-600"></i>
</div>
<div>
<h4 class="font-medium text-gray-700">Phone</h4>
<p class="text-gray-600">(123) 456-7890</p>
</div>
</div>
<div class="flex items-center">
<div class="bg-purple-100 p-3 rounded-full mr-4">
<i class="fas fa-map-marker-alt text-purple-600"></i>
</div>
<div>
<h4 class="font-medium text-gray-700">Location</h4>
<p class="text-gray-600">New York, NY</p>
</div>
</div>
</div>
<div class="mt-8">
<h4 class="text-lg font-medium mb-4">Connect with me</h4>
<div class="flex space-x-4">
<a href="#" class="bg-gray-100 hover:bg-gray-200 p-3 rounded-full text-gray-700">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="#" class="bg-gray-100 hover:bg-gray-200 p-3 rounded-full text-gray-700">
<i class="fab fa-github"></i>
</a>
<a href="#" class="bg-gray-100 hover:bg-gray-200 p-3 rounded-full text-gray-700">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="bg-gray-100 hover:bg-gray-200 p-3 rounded-full text-gray-700">
<i class="fab fa-instagram"></i>
</a>
</div>
</div>
</div>
<div class="md:w-1/2">
<form class="bg-gray-50 p-6 rounded-lg shadow-sm">
<div class="mb-4">
<label for="name" class="block text-gray-700 font-medium 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-emerald-500 focus:border-transparent">
</div>
<div class="mb-4">
<label for="email" class="block text-gray-700 font-medium 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-emerald-500 focus:border-transparent">
</div>
<div class="mb-4">
<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-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-emerald-500 focus:border-transparent">
</div>
<div class="mb-4">
<label for="message" class="block text-gray-700 font-medium mb-2">Message</label>
<textarea id="message" rows="4" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-emerald-500 focus:border-transparent"></textarea>
</div>
<button type="submit" class="bg-emerald-600 hover:bg-emerald-700 text-white px-6 py-3 rounded-lg font-medium w-full transition duration-300">
Send Message
</button>
</form>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white py-12">
<div class="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="mb-6 md:mb-0">
<span class="text-xl font-bold gradient-text">Tesneem</span>
<p class="text-gray-400 mt-2">Computer Science Graduate & Developer</p>
</div>
<div class="flex space-x-6">
<a href="#home" class="text-gray-400 hover:text-white">Home</a>
<a href="#about" class="text-gray-400 hover:text-white">About</a>
<a href="#experience" class="text-gray-400 hover:text-white">Experience</a>
<a href="#projects" class="text-gray-400 hover:text-white">Projects</a>
<a href="#contact" class="text-gray-400 hover:text-white">Contact</a>
</div>
</div>
<div class="border-t border-gray-800 mt-8 pt-8 flex flex-col md:flex-row justify-between items-center">
<p class="text-gray-400 mb-4 md:mb-0">© 2025 Tesneem. All rights reserved.</p>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i class="fab fa-github"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i class="fab fa-instagram"></i>
</a>
</div>
</div>
</div>
</footer>
<script>
// Mobile menu toggle
document.getElementById('menu-btn').addEventListener('click', function() {
document.getElementById('mobile-menu').classList.toggle('hidden');
});
// Smooth scrolling for navigation links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
// Close mobile menu if open
document.getElementById('mobile-menu').classList.add('hidden');
// Update active nav link
document.querySelectorAll('.nav-link').forEach(link => {
link.classList.remove('active');
});
this.classList.add('active');
});
});
// Highlight active navigation link on scroll
window.addEventListener('scroll', function() {
const sections = document.querySelectorAll('section');
const navLinks = document.querySelectorAll('.nav-link');
let current = '';
sections.forEach(section => {
const sectionTop = section.offsetTop;
const sectionHeight = section.clientHeight;
if (pageYOffset >= sectionTop - 300) {
current = section.getAttribute('id');
}
});
navLinks.forEach(link => {
link.classList.remove('active');
if (link.getAttribute('href') === `#${current}`) {
link.classList.add('active');
}
});
});
</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=Tesneem/portfolio-website" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>