portfolio-website / index.html
parthpatel01's picture
undefined - Initial Deployment
8d1f914 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Professional 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">
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: '#3b82f6',
secondary: '#1d4ed8',
accent: '#10b981'
}
}
}
}
</script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Poppins', sans-serif;
scroll-behavior: smooth;
}
.section {
padding: 5rem 0;
}
.skill-bar {
height: 8px;
border-radius: 4px;
}
.card {
transition: all 0.3s ease;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.timeline-item::before {
content: '';
position: absolute;
top: 0;
bottom: 0;
left: 6px;
width: 2px;
background: #3b82f6;
}
.mode-toggle {
cursor: pointer;
transition: all 0.3s ease;
}
.theme-dark {
background-color: #121212;
color: #f3f4f6;
}
.theme-dark .card {
background-color: #1e293b;
}
.theme-dark .text-gray-700 {
color: #d1d5db;
}
.gradient-text {
background: linear-gradient(90deg, #3b82f6, #10b981);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
</style>
</head>
<body class="bg-gray-50 text-gray-800">
<!-- Navigation -->
<nav class="sticky top-0 z-50 bg-white shadow-sm">
<div class="container mx-auto px-4 md:px-6">
<div class="flex justify-between items-center py-4">
<div class="text-xl font-bold text-primary">Portfolio<span class="text-accent">.</span></div>
<div class="hidden md:flex space-x-8">
<a href="#about" class="hover:text-primary transition">About</a>
<a href="#experience" class="hover:text-primary transition">Experience</a>
<a href="#education" class="hover:text-primary transition">Education</a>
<a href="#skills" class="hover:text-primary transition">Skills</a>
<a href="#projects" class="hover:text-primary transition">Projects</a>
<a href="#contact" class="hover:text-primary transition">Contact</a>
</div>
<div class="flex items-center">
<div id="mode-toggle" class="mode-toggle mr-4">
<i class="fas fa-moon"></i>
</div>
<button id="menu-btn" class="md:hidden">
<i class="fas fa-bars text-xl"></i>
</button>
</div>
</div>
<div id="mobile-menu" class="hidden py-4 px-4 bg-white shadow-md">
<div class="flex flex-col space-y-3">
<a href="#about" class="hover:text-primary transition">About</a>
<a href="#experience" class="hover:text-primary transition">Experience</a>
<a href="#education" class="hover:text-primary transition">Education</a>
<a href="#skills" class="hover:text-primary transition">Skills</a>
<a href="#projects" class="hover:text-primary transition">Projects</a>
<a href="#contact" class="hover:text-primary transition">Contact</a>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<header class="section bg-gray-100">
<div class="container mx-auto px-4 md:px-6">
<div class="flex flex-col md:flex-row items-center justify-between">
<div class="md:w-1/2 mb-8 md:mb-0">
<h1 class="text-4xl md:text-5xl lg:text-6xl font-bold mb-4">Hi, I'm <span class="gradient-text">Alex Morgan</span></h1>
<h2 class="text-2xl md:text-3xl font-semibold text-gray-600 mb-6">Full Stack Developer & UI/UX Designer</h2>
<p class="text-lg mb-8">I create engaging digital experiences with clean, efficient code and intuitive design.</p>
<div class="flex space-x-4">
<a href="#contact" class="bg-primary text-white py-2 px-6 rounded-md font-medium hover:bg-secondary transition">Hire Me</a>
<a href="#" class="border-2 border-primary text-primary py-2 px-6 rounded-md font-medium hover:bg-primary hover:text-white transition">Download CV</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-primary rounded-full overflow-hidden border-4 border-white shadow-xl">
<img src="https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=687&q=80"
alt="Alex Morgan" class="w-full h-full object-cover">
</div>
<div class="absolute -bottom-4 right-10 bg-white py-2 px-4 rounded-full flex items-center shadow-lg">
<div class="w-3 h-3 bg-green-500 rounded-full mr-2"></div>
<span class="text-sm font-medium">Available for work</span>
</div>
</div>
</div>
</div>
</div>
</header>
<!-- About Section -->
<section id="about" class="section bg-white">
<div class="container mx-auto px-4 md:px-6">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold mb-4">About Me</h2>
<div class="w-20 h-1 bg-primary mx-auto"></div>
</div>
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-8 md:mb-0">
<h3 class="text-2xl font-semibold mb-4">Personal Information</h3>
<div class="grid grid-cols-1 md:grid-cols-2 gap-4 mb-8">
<div class="flex">
<span class="font-semibold w-32">Name:</span>
<span>Alex Morgan</span>
</div>
<div class="flex">
<span class="font-semibold w-32">Email:</span>
<span>alex.morgan@example.com</span>
</div>
<div class="flex">
<span class="font-semibold w-32">Location:</span>
<span>San Francisco, CA</span>
</div>
<div class="flex">
<span class="font-semibold w-32">Phone:</span>
<span>(415) 555-0123</span>
</div>
<div class="flex">
<span class="font-semibold w-32">Freelance:</span>
<span>Available</span>
</div>
<div class="flex">
<span class="font-semibold w-32">Languages:</span>
<span>English, Spanish</span>
</div>
</div>
<div class="flex space-x-3">
<a href="#" class="w-10 h-10 rounded-full bg-primary text-white flex items-center justify-center hover:bg-secondary transition">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-primary text-white flex items-center justify-center hover:bg-secondary transition">
<i class="fab fa-github"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-primary text-white flex items-center justify-center hover:bg-secondary transition">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-primary text-white flex items-center justify-center hover:bg-secondary transition">
<i class="fab fa-dribbble"></i>
</a>
</div>
</div>
<div class="md:w-1/2 pl-0 md:pl-12">
<h3 class="text-2xl font-semibold mb-4">Professional Summary</h3>
<p class="mb-4">I'm a passionate Full Stack Developer with over 5 years of experience creating responsive websites and scalable web applications.</p>
<p class="mb-4">Specializing in JavaScript technologies, I've worked with startups and enterprises to deliver innovative solutions.</p>
<p>My design background brings a unique perspective to development projects, ensuring both functionality and aesthetics are prioritized.</p>
<div class="mt-8 flex justify-start">
<div class="mr-8">
<h4 class="text-2xl font-bold text-primary">25+</h4>
<p>Projects Completed</p>
</div>
<div class="mr-8">
<h4 class="text-2xl font-bold text-primary">12+</h4>
<p>Happy Clients</p>
</div>
<div>
<h4 class="text-2xl font-bold text-primary">5+</h4>
<p>Years Experience</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Experience Section -->
<section id="experience" class="section bg-gray-100">
<div class="container mx-auto px-4 md:px-6">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold mb-4">Work Experience</h2>
<div class="w-20 h-1 bg-primary mx-auto"></div>
</div>
<div class="max-w-3xl mx-auto">
<div class="relative">
<!-- Experience Item -->
<div class="timeline-item pl-8 mb-12 relative">
<div class="absolute left-0 top-0 w-4 h-4 rounded-full bg-primary z-10"></div>
<div class="card bg-white p-6 rounded-md">
<div class="flex justify-between items-start flex-wrap">
<div>
<h3 class="text-xl font-semibold mb-1">Senior Frontend Developer</h3>
<p class="text-lg text-primary font-medium mb-2">TechSolutions Inc.</p>
</div>
<span class="bg-gray-100 px-3 py-1 rounded text-sm">2021 - Present</span>
</div>
<p class="text-gray-600 mb-4">Lead frontend team in developing enterprise SaaS applications with React ecosystem.</p>
<ul class="list-disc pl-5 text-gray-600">
<li>Reduced loading time by 40% through optimization</li>
<li>Implemented CI/CD pipelines for frontend deployment</li>
<li>Mentored junior developers and conducted code reviews</li>
</ul>
</div>
</div>
<!-- Experience Item -->
<div class="timeline-item pl-8 mb-12 relative">
<div class="absolute left-0 top-0 w-4 h-4 rounded-full bg-primary z-10"></div>
<div class="card bg-white p-6 rounded-md">
<div class="flex justify-between items-start flex-wrap">
<div>
<h3 class="text-xl font-semibold mb-1">Full Stack Developer</h3>
<p class="text-lg text-primary font-medium mb-2">Innovate Systems</p>
</div>
<span class="bg-gray-100 px-3 py-1 rounded text-sm">2019 - 2021</span>
</div>
<p class="text-gray-600 mb-4">Developed full-stack applications using React, Node.js and MongoDB.</p>
<ul class="list-disc pl-5 text-gray-600">
<li>Created RESTful API endpoints with Node.js</li>
<li>Built responsive UI components with React and CSS modules</li>
<li>Integrated payment systems and authentication modules</li>
</ul>
</div>
</div>
<!-- Experience Item -->
<div class="timeline-item pl-8 relative">
<div class="absolute left-0 top-0 w-4 h-4 rounded-full bg-primary z-10"></div>
<div class="card bg-white p-6 rounded-md">
<div class="flex justify-between items-start flex-wrap">
<div>
<h3 class="text-xl font-semibold mb-1">Frontend Developer</h3>
<p class="text-lg text-primary font-medium mb-2">Digital Creations</p>
</div>
<span class="bg-gray-100 px-3 py-1 rounded text-sm">2018 - 2019</span>
</div>
<p class="text-gray-600 mb-4">Created responsive websites and landing pages for various clients.</p>
<ul class="list-disc pl-5 text-gray-600">
<li>Converted design mockups to responsive HTML/CSS</li>
<li>Implemented interactive features with JavaScript</li>
<li>Optimized websites for speed and SEO</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Education Section -->
<section id="education" class="section bg-white">
<div class="container mx-auto px-4 md:px-6">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold mb-4">Education</h2>
<div class="w-20 h-1 bg-primary mx-auto"></div>
</div>
<div class="max-w-3xl mx-auto">
<div class="relative">
<!-- Education Item -->
<div class="timeline-item pl-8 mb-12 relative">
<div class="absolute left-0 top-0 w-4 h-4 rounded-full bg-primary z-10"></div>
<div class="card bg-gray-50 p-6 rounded-md">
<div class="flex justify-between items-start flex-wrap">
<div>
<h3 class="text-xl font-semibold mb-1">Master of Computer Science</h3>
<p class="text-lg text-primary font-medium mb-2">Stanford University</p>
</div>
<span class="bg-gray-100 px-3 py-1 rounded text-sm">2016 - 2018</span>
</div>
<p class="text-gray-600 mb-4">Specialized in Artificial Intelligence and Human-Computer Interaction.</p>
<p class="text-gray-600">GPA: 3.9/4.0</p>
</div>
</div>
<!-- Education Item -->
<div class="timeline-item pl-8 mb-12 relative">
<div class="absolute left-0 top-0 w-4 h-4 rounded-full bg-primary z-10"></div>
<div class="card bg-gray-50 p-6 rounded-md">
<div class="flex justify-between items-start flex-wrap">
<div>
<h3 class="text-xl font-semibold mb-1">Bachelor of Science in Software Engineering</h3>
<p class="text-lg text-primary font-medium mb-2">UC Berkeley</p>
</div>
<span class="bg-gray-100 px-3 py-1 rounded text-sm">2012 - 2016</span>
</div>
<p class="text-gray-600 mb-4">Focus on web technologies and software development lifecycle.</p>
<p class="text-gray-600">GPA: 3.7/4.0</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Skills Section -->
<section id="skills" class="section bg-gray-100">
<div class="container mx-auto px-4 md:px-6">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold mb-4">Technical Skills</h2>
<div class="w-20 h-1 bg-primary mx-auto"></div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-12">
<!-- Technical Skills -->
<div>
<h3 class="text-xl font-semibold mb-6">Technical Skills</h3>
<div class="mb-6">
<div class="flex justify-between mb-2">
<span>React & Next.js</span>
<span>95%</span>
</div>
<div class="skill-bar bg-gray-200 rounded overflow-hidden">
<div class="bg-primary h-full" style="width: 95%"></div>
</div>
</div>
<div class="mb-6">
<div class="flex justify-between mb-2">
<span>JavaScript / TypeScript</span>
<span>92%</span>
</div>
<div class="skill-bar bg-gray-200 rounded overflow-hidden">
<div class="bg-primary h-full" style="width: 92%"></div>
</div>
</div>
<div class="mb-6">
<div class="flex justify-between mb-2">
<span>Node.js & Express</span>
<span>88%</span>
</div>
<div class="skill-bar bg-gray-200 rounded overflow-hidden">
<div class="bg-primary h-full" style="width: 88%"></div>
</div>
</div>
<div class="mb-6">
<div class="flex justify-between mb-2">
<span>HTML5 & CSS3</span>
<span>90%</span>
</div>
<div class="skill-bar bg-gray-200 rounded overflow-hidden">
<div class="bg-primary h-full" style="width: 90%"></div>
</div>
</div>
</div>
<!-- Tools & Languages -->
<div>
<h3 class="text-xl font-semibold mb-6">Tools & Languages</h3>
<div class="grid grid-cols-2 gap-6">
<div class="bg-white p-4 rounded-md shadow-sm flex items-center">
<div class="w-10 h-10 rounded-full bg-primary bg-opacity-10 text-primary flex items-center justify-center mr-3">
<i class="fab fa-git-alt"></i>
</div>
<span>Git & GitHub</span>
</div>
<div class="bg-white p-4 rounded-md shadow-sm flex items-center">
<div class="w-10 h-10 rounded-full bg-primary bg-opacity-10 text-primary flex items-center justify-center mr-3">
<i class="fab fa-docker"></i>
</div>
<span>Docker</span>
</div>
<div class="bg-white p-4 rounded-md shadow-sm flex items-center">
<div class="w-10 h-10 rounded-full bg-primary bg-opacity-10 text-primary flex items-center justify-center mr-3">
<i class="fab fa-aws"></i>
</div>
<span>AWS Services</span>
</div>
<div class="bg-white p-4 rounded-md shadow-sm flex items-center">
<div class="w-10 h-10 rounded-full bg-primary bg-opacity-10 text-primary flex items-center justify-center mr-3">
<i class="fas fa-server"></i>
</div>
<span>SQL & NoSQL</span>
</div>
<div class="bg-white p-4 rounded-md shadow-sm flex items-center">
<div class="w-10 h-10 rounded-full bg-primary bg-opacity-10 text-primary flex items-center justify-center mr-3">
<i class="fab fa-python"></i>
</div>
<span>Python</span>
</div>
<div class="bg-white p-4 rounded-md shadow-sm flex items-center">
<div class="w-10 h-10 rounded-full bg-primary bg-opacity-10 text-primary flex items-center justify-center mr-3">
<i class="fas fa-code"></i>
</div>
<span>TypeScript</span>
</div>
</div>
<h3 class="text-xl font-semibold mb-6 mt-8">Soft Skills</h3>
<div class="flex flex-wrap gap-3">
<span class="bg-white px-4 py-2 rounded-full text-sm">Communication</span>
<span class="bg-white px-4 py-2 rounded-full text-sm">Team Leadership</span>
<span class="bg-white px-4 py-2 rounded-full text-sm">Problem Solving</span>
<span class="bg-white px-4 py-2 rounded-full text-sm">Time Management</span>
<span class="bg-white px-4 py-2 rounded-full text-sm">Project Planning</span>
<span class="bg-white px-4 py-2 rounded-full text-sm">Adaptability</span>
</div>
</div>
</div>
</div>
</section>
<!-- Projects Section -->
<section id="projects" class="section bg-white">
<div class="container mx-auto px-4 md:px-6">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold mb-4">Featured Projects</h2>
<div class="w-20 h-1 bg-primary mx-auto"></div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Project 1 -->
<div class="card bg-white rounded-lg overflow-hidden shadow-md hover:shadow-xl">
<div class="h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1552234994-66f2344f4db7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80"
alt="E-commerce Dashboard" class="w-full h-full object-cover">
</div>
<div class="p-6">
<div class="flex justify-between items-center mb-3">
<span class="text-sm font-medium text-primary">React</span>
<div class="flex">
<a href="#" class="text-gray-400 hover:text-primary mr-3">
<i class="fas fa-code"></i>
</a>
<a href="#" class="text-gray-400 hover:text-primary">
<i class="fas fa-eye"></i>
</a>
</div>
</div>
<h3 class="text-xl font-semibold mb-2">E-commerce Dashboard</h3>
<p class="text-gray-600 mb-4">Admin dashboard with analytics for managing products, orders and customers.</p>
<div class="flex flex-wrap gap-2">
<span class="text-xs bg-gray-100 px-3 py-1 rounded">React</span>
<span class="text-xs bg-gray-100 px-3 py-1 rounded">Chart.js</span>
<span class="text-xs bg-gray-100 px-3 py-1 rounded">Material UI</span>
</div>
</div>
</div>
<!-- Project 2 -->
<div class="card bg-white rounded-lg overflow-hidden shadow-md hover:shadow-xl">
<div class="h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1460925895917-afdab827c52f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1115&q=80"
alt="Finance App" class="w-full h-full object-cover">
</div>
<div class="p-6">
<div class="flex justify-between items-center mb-3">
<span class="text-sm font-medium text-primary">React Native</span>
<div class="flex">
<a href="#" class="text-gray-400 hover:text-primary mr-3">
<i class="fas fa-code"></i>
</a>
<a href="#" class="text-gray-400 hover:text-primary">
<i class="fas fa-eye"></i>
</a>
</div>
</div>
<h3 class="text-xl font-semibold mb-2">Finance Mobile App</h3>
<p class="text-gray-600 mb-4">Mobile application for tracking expenses and managing personal budgets.</p>
<div class="flex flex-wrap gap-2">
<span class="text-xs bg-gray-100 px-3 py-1 rounded">React Native</span>
<span class="text-xs bg-gray-100 px-3 py-1 rounded">Firebase</span>
<span class="text-xs bg-gray-100 px-3 py-1 rounded">Styled Components</span>
</div>
</div>
</div>
<!-- Project 3 -->
<div class="card bg-white rounded-lg overflow-hidden shadow-md hover:shadow-xl">
<div class="h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1551434678-e076c223a692?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80"
alt="Task Management" class="w-full h-full object-cover">
</div>
<div class="p-6">
<div class="flex justify-between items-center mb-3">
<span class="text-sm font-medium text-primary">MERN Stack</span>
<div class="flex">
<a href="#" class="text-gray-400 hover:text-primary mr-3">
<i class="fas fa-code"></i>
</a>
<a href="#" class="text-gray-400 hover:text-primary">
<i class="fas fa-eye"></i>
</a>
</div>
</div>
<h3 class="text-xl font-semibold mb-2">Task Management System</h3>
<p class="text-gray-600 mb-4">Collaborative task management with team assignments and deadline tracking.</p>
<div class="flex flex-wrap gap-2">
<span class="text-xs bg-gray-100 px-3 py-1 rounded">React</span>
<span class="text-xs bg-gray-100 px-3 py-1 rounded">Node.js</span>
<span class="text-xs bg-gray-100 px-3 py-1 rounded">MongoDB</span>
</div>
</div>
</div>
</div>
<div class="mt-12 text-center">
<a href="#" class="inline-block border border-primary text-primary px-8 py-3 rounded-md hover:bg-primary hover:text-white transition">View All Projects</a>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="section bg-gray-100">
<div class="container mx-auto px-4 md:px-6">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold mb-4">Get In Touch</h2>
<div class="w-20 h-1 bg-primary mx-auto"></div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-12 max-w-6xl mx-auto">
<div>
<h3 class="text-2xl font-semibold mb-6">Contact Information</h3>
<div class="space-y-6">
<div class="flex">
<div class="w-12 h-12 rounded-full bg-primary text-white flex items-center justify-center mr-4">
<i class="fas fa-map-marker-alt"></i>
</div>
<div>
<h4 class="font-medium">Location</h4>
<p class="text-gray-600">San Francisco, California</p>
</div>
</div>
<div class="flex">
<div class="w-12 h-12 rounded-full bg-primary text-white flex items-center justify-center mr-4">
<i class="fas fa-envelope"></i>
</div>
<div>
<h4 class="font-medium">Email</h4>
<p class="text-gray-600">alex.morgan@example.com</p>
</div>
</div>
<div class="flex">
<div class="w-12 h-12 rounded-full bg-primary text-white flex items-center justify-center mr-4">
<i class="fas fa-phone"></i>
</div>
<div>
<h4 class="font-medium">Phone</h4>
<p class="text-gray-600">(415) 555-0123</p>
</div>
</div>
<div class="flex">
<div class="w-12 h-12 rounded-full bg-primary text-white flex items-center justify-center mr-4">
<i class="fas fa-globe"></i>
</div>
<div>
<h4 class="font-medium">Website</h4>
<p class="text-gray-600">www.alexmorgan.dev</p>
</div>
</div>
</div>
</div>
<div>
<form class="space-y-6">
<div>
<input type="text" placeholder="Your Name" class="w-full px-4 py-3 rounded border border-gray-300 focus:outline-none focus:ring-2 focus:ring-primary">
</div>
<div>
<input type="email" placeholder="Your Email" class="w-full px-4 py-3 rounded border border-gray-300 focus:outline-none focus:ring-2 focus:ring-primary">
</div>
<div>
<input type="text" placeholder="Subject" class="w-full px-4 py-3 rounded border border-gray-300 focus:outline-none focus:ring-2 focus:ring-primary">
</div>
<div>
<textarea placeholder="Message" rows="5" class="w-full px-4 py-3 rounded border border-gray-300 focus:outline-none focus:ring-2 focus:ring-primary"></textarea>
</div>
<button type="submit" class="bg-primary text-white py-3 px-8 rounded-md font-medium hover:bg-secondary transition w-full md:w-auto">
Send Message <i class="fas fa-paper-plane ml-2"></i>
</button>
</form>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-800 text-gray-300 py-12">
<div class="container mx-auto px-4 md:px-6">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="mb-6 md:mb-0">
<div class="text-xl font-bold text-white mb-2">Portfolio<span class="text-accent">.</span></div>
<p class="text-sm">© 2023 Alex Morgan. All Rights Reserved.</p>
</div>
<div>
<div class="flex space-x-4 mb-4">
<a href="#" class="w-10 h-10 rounded-full bg-gray-700 hover:bg-primary text-white flex items-center justify-center">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-gray-700 hover:bg-primary text-white flex items-center justify-center">
<i class="fab fa-github"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-gray-700 hover:bg-primary text-white flex items-center justify-center">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-gray-700 hover:bg-primary text-white flex items-center justify-center">
<i class="fab fa-dribbble"></i>
</a>
</div>
<div class="text-center md:text-right">
<a href="#hero" class="text-sm text-gray-400 hover:text-white flex items-center justify-center md:justify-end">
<i class="fas fa-arrow-up mr-2"></i> Back to top
</a>
</div>
</div>
</div>
</div>
</footer>
<script>
// Toggle Mobile Menu
const menuBtn = document.getElementById('menu-btn');
const mobileMenu = document.getElementById('mobile-menu');
menuBtn.addEventListener('click', () => {
mobileMenu.classList.toggle('hidden');
});
// Dark Mode Toggle
const modeToggle = document.getElementById('mode-toggle');
modeToggle.addEventListener('click', () => {
document.body.classList.toggle('theme-dark');
// Change icon
const icon = modeToggle.querySelector('i');
if (document.body.classList.contains('theme-dark')) {
icon.classList.remove('fa-moon');
icon.classList.add('fa-sun');
} else {
icon.classList.remove('fa-sun');
icon.classList.add('fa-moon');
}
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function(e) {
e.preventDefault();
const targetId = this.getAttribute('href');
if (targetId === '#') return;
const targetElement = document.querySelector(targetId);
if (targetElement) {
window.scrollTo({
top: targetElement.offsetTop - 80,
behavior: 'smooth'
});
// Close mobile menu after clicking
if (mobileMenu.classList.contains('hidden')) return;
mobileMenu.classList.add('hidden');
}
});
});
</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=parthpatel01/portfolio-website" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>