Spaces:
Running
Running
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Rupinder Kaur | Web Developer 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> | |
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap'); | |
body { | |
font-family: 'Poppins', sans-serif; | |
background-color: #f8fafc; | |
color: #1e293b; | |
} | |
.gradient-text { | |
background: linear-gradient(90deg, #6366f1, #8b5cf6); | |
-webkit-background-clip: text; | |
background-clip: text; | |
color: transparent; | |
} | |
.gradient-bg { | |
background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%); | |
} | |
.glass-card { | |
background: rgba(255, 255, 255, 0.8); | |
backdrop-filter: blur(10px); | |
border: 1px solid rgba(255, 255, 255, 0.2); | |
} | |
.project-card { | |
transition: all 0.3s ease; | |
transform-style: preserve-3d; | |
} | |
.project-card:hover { | |
transform: translateY(-10px) scale(1.02); | |
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); | |
} | |
.skill-pill { | |
transition: all 0.3s ease; | |
} | |
.skill-pill:hover { | |
transform: scale(1.05); | |
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); | |
} | |
.nav-link { | |
position: relative; | |
} | |
.nav-link::after { | |
content: ''; | |
position: absolute; | |
width: 0; | |
height: 2px; | |
bottom: -2px; | |
left: 0; | |
background: linear-gradient(90deg, #6366f1, #8b5cf6); | |
transition: width 0.3s ease; | |
} | |
.nav-link:hover::after { | |
width: 100%; | |
} | |
.hero-image { | |
animation: float 6s ease-in-out infinite; | |
} | |
@keyframes float { | |
0% { transform: translateY(0px); } | |
50% { transform: translateY(-20px); } | |
100% { transform: translateY(0px); } | |
} | |
.section-title { | |
position: relative; | |
display: inline-block; | |
} | |
.section-title::after { | |
content: ''; | |
position: absolute; | |
width: 60%; | |
height: 4px; | |
bottom: -8px; | |
left: 0; | |
background: linear-gradient(90deg, #6366f1, #8b5cf6); | |
border-radius: 2px; | |
} | |
</style> | |
</head> | |
<body class="antialiased"> | |
<!-- Navigation --> | |
<nav class="fixed w-full z-50 glass-card py-4 px-6 md:px-12"> | |
<div class="container mx-auto flex justify-between items-center"> | |
<a href="#" class="text-2xl font-bold gradient-text">Rupinder.</a> | |
<div class="hidden md:flex space-x-8"> | |
<a href="#home" class="nav-link font-medium">Home</a> | |
<a href="#about" class="nav-link font-medium">About</a> | |
<a href="#skills" class="nav-link font-medium">Skills</a> | |
<a href="#projects" class="nav-link font-medium">Projects</a> | |
<a href="#contact" class="nav-link font-medium">Contact</a> | |
</div> | |
<button class="md:hidden text-xl"> | |
<i class="fas fa-bars"></i> | |
</button> | |
</div> | |
</nav> | |
<!-- Hero Section --> | |
<section id="home" class="min-h-screen flex items-center pt-20 pb-16 px-6 md:px-12"> | |
<div class="container mx-auto grid md:grid-cols-2 gap-12 items-center"> | |
<div class="order-2 md:order-1"> | |
<h1 class="text-4xl md:text-6xl font-bold mb-4">Hi, I'm <span class="gradient-text">Rupinder Kaur</span></h1> | |
<h2 class="text-2xl md:text-3xl font-semibold mb-6 text-slate-600">Frontend Developer</h2> | |
<p class="text-lg text-slate-500 mb-8 max-w-lg"> | |
I build exceptional digital experiences with modern web technologies. | |
Passionate about creating intuitive, responsive, and visually appealing interfaces. | |
</p> | |
<div class="flex flex-wrap gap-4"> | |
<a href="#contact" class="gradient-bg text-white px-6 py-3 rounded-lg font-medium hover:shadow-lg transition"> | |
Get In Touch | |
</a> | |
<a href="#projects" class="border border-slate-300 px-6 py-3 rounded-lg font-medium hover:bg-slate-50 transition"> | |
View My Work | |
</a> | |
</div> | |
<div class="mt-8 flex space-x-4"> | |
<a href="#" class="text-xl text-slate-600 hover:text-indigo-500 transition"> | |
<i class="fab fa-linkedin"></i> | |
</a> | |
<a href="#" class="text-xl text-slate-600 hover:text-indigo-500 transition"> | |
<i class="fab fa-github"></i> | |
</a> | |
<a href="#" class="text-xl text-slate-600 hover:text-indigo-500 transition"> | |
<i class="fab fa-twitter"></i> | |
</a> | |
</div> | |
</div> | |
<div class="order-1 md:order-2 flex justify-center"> | |
<div class="hero-image relative w-64 h-64 md:w-80 md:h-80 rounded-full gradient-bg flex items-center justify-center"> | |
<div class="absolute inset-0 rounded-full bg-white/10 backdrop-blur-sm"></div> | |
<i class="fas fa-laptop-code text-6xl md:text-8xl text-white opacity-90"></i> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- About Section --> | |
<section id="about" class="py-16 px-6 md:px-12 bg-white"> | |
<div class="container mx-auto"> | |
<h2 class="text-3xl md:text-4xl font-bold mb-12 section-title">About Me</h2> | |
<div class="grid md:grid-cols-2 gap-12 items-center"> | |
<div> | |
<p class="text-lg text-slate-600 mb-6"> | |
I'm a passionate web developer with expertise in modern frontend technologies. | |
With a strong foundation in computer science and years of hands-on experience, | |
I create digital solutions that are both beautiful and functional. | |
</p> | |
<p class="text-lg text-slate-600 mb-6"> | |
My journey in web development started during my master's program, and since then | |
I've been constantly learning and adapting to new technologies to build better | |
user experiences. | |
</p> | |
<div class="grid grid-cols-2 gap-4"> | |
<div class="bg-slate-50 p-4 rounded-lg"> | |
<h3 class="font-bold text-indigo-600 mb-2">Education</h3> | |
<p class="text-sm text-slate-600">Master in IT</p> | |
<p class="text-xs text-slate-500">Guru Nanak Dev University</p> | |
</div> | |
<div class="bg-slate-50 p-4 rounded-lg"> | |
<h3 class="font-bold text-indigo-600 mb-2">Experience</h3> | |
<p class="text-sm text-slate-600">Frontend Developer</p> | |
<p class="text-xs text-slate-500">Since 2015</p> | |
</div> | |
</div> | |
</div> | |
<div class="bg-slate-50 rounded-xl p-8"> | |
<h3 class="text-xl font-bold mb-6 text-center">My Tech Stack</h3> | |
<div class="grid grid-cols-3 gap-4"> | |
<div class="flex flex-col items-center"> | |
<div class="w-16 h-16 bg-white rounded-full shadow-md flex items-center justify-center mb-2"> | |
<i class="fab fa-html5 text-3xl text-orange-500"></i> | |
</div> | |
<span class="text-sm font-medium">HTML5</span> | |
</div> | |
<div class="flex flex-col items-center"> | |
<div class="w-16 h-16 bg-white rounded-full shadow-md flex items-center justify-center mb-2"> | |
<i class="fab fa-css3-alt text-3xl text-blue-500"></i> | |
</div> | |
<span class="text-sm font-medium">CSS3</span> | |
</div> | |
<div class="flex flex-col items-center"> | |
<div class="w-16 h-16 bg-white rounded-full shadow-md flex items-center justify-center mb-2"> | |
<i class="fab fa-js text-3xl text-yellow-500"></i> | |
</div> | |
<span class="text-sm font-medium">JavaScript</span> | |
</div> | |
<div class="flex flex-col items-center"> | |
<div class="w-16 h-16 bg-white rounded-full shadow-md flex items-center justify-center mb-2"> | |
<i class="fab fa-react text-3xl text-blue-400"></i> | |
</div> | |
<span class="text-sm font-medium">React</span> | |
</div> | |
<div class="flex flex-col items-center"> | |
<div class="w-16 h-16 bg-white rounded-full shadow-md flex items-center justify-center mb-2"> | |
<i class="fab fa-git-alt text-3xl text-red-500"></i> | |
</div> | |
<span class="text-sm font-medium">Git</span> | |
</div> | |
<div class="flex flex-col items-center"> | |
<div class="w-16 h-16 bg-white rounded-full shadow-md flex items-center justify-center mb-2"> | |
<i class="fas fa-code text-3xl text-purple-500"></i> | |
</div> | |
<span class="text-sm font-medium">VS Code</span> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Skills Section --> | |
<section id="skills" class="py-16 px-6 md:px-12 bg-slate-50"> | |
<div class="container mx-auto"> | |
<h2 class="text-3xl md:text-4xl font-bold mb-12 section-title">My Skills</h2> | |
<div class="grid md:grid-cols-2 gap-8"> | |
<!-- Technical Skills --> | |
<div class="bg-white p-8 rounded-xl shadow-sm"> | |
<h3 class="text-xl font-bold mb-6 flex items-center"> | |
<i class="fas fa-code text-indigo-500 mr-3"></i> | |
<span>Technical Skills</span> | |
</h3> | |
<div class="space-y-4"> | |
<div> | |
<div class="flex justify-between mb-1"> | |
<span class="font-medium">HTML/CSS</span> | |
<span class="text-slate-500">95%</span> | |
</div> | |
<div class="w-full bg-slate-200 rounded-full h-2"> | |
<div class="gradient-bg h-2 rounded-full" style="width: 95%"></div> | |
</div> | |
</div> | |
<div> | |
<div class="flex justify-between mb-1"> | |
<span class="font-medium">JavaScript</span> | |
<span class="text-slate-500">90%</span> | |
</div> | |
<div class="w-full bg-slate-200 rounded-full h-2"> | |
<div class="gradient-bg h-2 rounded-full" style="width: 90%"></div> | |
</div> | |
</div> | |
<div> | |
<div class="flex justify-between mb-1"> | |
<span class="font-medium">React.js</span> | |
<span class="text-slate-500">85%</span> | |
</div> | |
<div class="w-full bg-slate-200 rounded-full h-2"> | |
<div class="gradient-bg h-2 rounded-full" style="width: 85%"></div> | |
</div> | |
</div> | |
<div> | |
<div class="flex justify-between mb-1"> | |
<span class="font-medium">Git/GitHub</span> | |
<span class="text-slate-500">80%</span> | |
</div> | |
<div class="w-full bg-slate-200 rounded-full h-2"> | |
<div class="gradient-bg h-2 rounded-full" style="width: 80%"></div> | |
</div> | |
</div> | |
</div> | |
</div> | |
<!-- Professional Skills --> | |
<div class="bg-white p-8 rounded-xl shadow-sm"> | |
<h3 class="text-xl font-bold mb-6 flex items-center"> | |
<i class="fas fa-user-tie text-indigo-500 mr-3"></i> | |
<span>Professional Skills</span> | |
</h3> | |
<div class="flex flex-wrap gap-3"> | |
<span class="skill-pill bg-indigo-100 text-indigo-800 px-4 py-2 rounded-full">Problem Solving</span> | |
<span class="skill-pill bg-indigo-100 text-indigo-800 px-4 py-2 rounded-full">Teamwork</span> | |
<span class="skill-pill bg-indigo-100 text-indigo-800 px-4 py-2 rounded-full">Creativity</span> | |
<span class="skill-pill bg-indigo-100 text-indigo-800 px-4 py-2 rounded-full">Communication</span> | |
<span class="skill-pill bg-indigo-100 text-indigo-800 px-4 py-2 rounded-full">Time Management</span> | |
<span class="skill-pill bg-indigo-100 text-indigo-800 px-4 py-2 rounded-full">Adaptability</span> | |
</div> | |
<h3 class="text-xl font-bold mt-8 mb-6 flex items-center"> | |
<i class="fas fa-certificate text-indigo-500 mr-3"></i> | |
<span>Certifications</span> | |
</h3> | |
<div class="bg-indigo-50 p-4 rounded-lg"> | |
<h4 class="font-bold text-indigo-700">JavaScript and React.js Certification</h4> | |
<p class="text-sm text-slate-600">SimbaQuartz IT Company - June 2024</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Projects Section --> | |
<section id="projects" class="py-16 px-6 md:px-12 bg-white"> | |
<div class="container mx-auto"> | |
<h2 class="text-3xl md:text-4xl font-bold mb-12 section-title">Featured Projects</h2> | |
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8"> | |
<!-- Chat App --> | |
<div class="project-card bg-white rounded-xl shadow-md overflow-hidden border border-slate-100"> | |
<div class="relative h-48 overflow-hidden"> | |
<img src="https://images.unsplash.com/photo-1633356122544-f134324a6cee?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" | |
alt="Chat App" class="w-full h-full object-cover"> | |
<div class="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent"></div> | |
<div class="absolute bottom-4 left-4"> | |
<span class="bg-indigo-500 text-white text-xs px-2 py-1 rounded">React.js</span> | |
<span class="bg-purple-500 text-white text-xs px-2 py-1 rounded ml-1">Firebase</span> | |
</div> | |
</div> | |
<div class="p-6"> | |
<h3 class="text-xl font-bold mb-2">Real-time Chat App</h3> | |
<p class="text-slate-600 mb-4"> | |
Built a real-time chat application with user registration, login, online user management, and one-to-one messaging. | |
</p> | |
<div class="flex justify-between items-center"> | |
<a href="https://free-api-chat.vercel.app" target="_blank" class="text-indigo-600 hover:text-indigo-800 font-medium flex items-center"> | |
View Project <i class="fas fa-external-link-alt ml-2"></i> | |
</a> | |
<a href="#" class="text-slate-400 hover:text-indigo-600"> | |
<i class="fab fa-github"></i> | |
</a> | |
</div> | |
</div> | |
</div> | |
<!-- Rider App --> | |
<div class="project-card bg-white rounded-xl shadow-md overflow-hidden border border-slate-100"> | |
<div class="relative h-48 overflow-hidden"> | |
<img src="https://images.unsplash.com/photo-1565299624946-b28f40a0ae38?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" | |
alt="Rider App" class="w-full h-full object-cover"> | |
<div class="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent"></div> | |
<div class="absolute bottom-4 left-4"> | |
<span class="bg-indigo-500 text-white text-xs px-2 py-1 rounded">React.js</span> | |
<span class="bg-green-500 text-white text-xs px-2 py-1 rounded ml-1">Context API</span> | |
</div> | |
</div> | |
<div class="p-6"> | |
<h3 class="text-xl font-bold mb-2">Food Delivery App</h3> | |
<p class="text-slate-600 mb-4"> | |
Designed an app with React.js for ordering food and drinks, with a dynamic list showing selected items and quantities. | |
</p> | |
<div class="flex justify-between items-center"> | |
<a href="https://rider-app-ebf3.vercel.app" target="_blank" class="text-indigo-600 hover:text-indigo-800 font-medium flex items-center"> | |
View Project <i class="fas fa-external-link-alt ml-2"></i> | |
</a> | |
<a href="#" class="text-slate-400 hover:text-indigo-600"> | |
<i class="fab fa-github"></i> | |
</a> | |
</div> | |
</div> | |
</div> | |
<!-- Weather App --> | |
<div class="project-card bg-white rounded-xl shadow-md overflow-hidden border border-slate-100"> | |
<div class="relative h-48 overflow-hidden"> | |
<img src="https://images.unsplash.com/photo-1601134467661-268d69453fae?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" | |
alt="Weather App" class="w-full h-full object-cover"> | |
<div class="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent"></div> | |
<div class="absolute bottom-4 left-4"> | |
<span class="bg-blue-500 text-white text-xs px-2 py-1 rounded">JavaScript</span> | |
<span class="bg-yellow-500 text-white text-xs px-2 py-1 rounded ml-1">API Integration</span> | |
</div> | |
</div> | |
<div class="p-6"> | |
<h3 class="text-xl font-bold mb-2">Weather Application</h3> | |
<p class="text-slate-600 mb-4"> | |
Developed a weather application using HTML, CSS, and JavaScript integrated with a third-party weather API. | |
</p> | |
<div class="flex justify-between items-center"> | |
<a href="https://weather-app-e62t.vercel.app" target="_blank" class="text-indigo-600 hover:text-indigo-800 font-medium flex items-center"> | |
View Project <i class="fas fa-external-link-alt ml-2"></i> | |
</a> | |
<a href="#" class="text-slate-400 hover:text-indigo-600"> | |
<i class="fab fa-github"></i> | |
</a> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="mt-12 text-center"> | |
<a href="#" class="inline-flex items-center text-indigo-600 hover:text-indigo-800 font-medium"> | |
View All Projects <i class="fas fa-arrow-right ml-2"></i> | |
</a> | |
</div> | |
</div> | |
</section> | |
<!-- Contact Section --> | |
<section id="contact" class="py-16 px-6 md:px-12 gradient-bg text-white"> | |
<div class="container mx-auto"> | |
<h2 class="text-3xl md:text-4xl font-bold mb-12 section-title text-white">Get In Touch</h2> | |
<div class="grid md:grid-cols-2 gap-12"> | |
<div> | |
<h3 class="text-2xl font-bold mb-6">Let's work together!</h3> | |
<p class="text-lg mb-8 opacity-90"> | |
I'm currently looking for new opportunities. Whether you have a project in mind or just want to say hello, | |
I'll do my best to respond as soon as possible. | |
</p> | |
<div class="space-y-4"> | |
<div class="flex items-center"> | |
<i class="fas fa-envelope text-xl mr-4 opacity-80"></i> | |
<a href="mailto:[email protected]" class="hover:underline">[email protected]</a> | |
</div> | |
<div class="flex items-center"> | |
<i class="fas fa-phone text-xl mr-4 opacity-80"></i> | |
<a href="tel:9815742397" class="hover:underline">+91 9815742397</a> | |
</div> | |
<div class="flex items-center"> | |
<i class="fas fa-map-marker-alt text-xl mr-4 opacity-80"></i> | |
<span>Batala, Gurdaspur, Punjab</span> | |
</div> | |
</div> | |
<div class="mt-8 flex space-x-4"> | |
<a href="#" class="text-2xl hover:opacity-80 transition"> | |
<i class="fab fa-linkedin"></i> | |
</a> | |
<a href="#" class="text-2xl hover:opacity-80 transition"> | |
<i class="fab fa-github"></i> | |
</a> | |
<a href="#" class="text-2xl hover:opacity-80 transition"> | |
<i class="fab fa-twitter"></i> | |
</a> | |
</div> | |
</div> | |
<div class="bg-white/10 backdrop-blur-sm rounded-xl p-8 border border-white/20"> | |
<form> | |
<div class="mb-6"> | |
<label for="name" class="block mb-2 font-medium">Your Name</label> | |
<input type="text" id="name" class="w-full px-4 py-3 bg-white/10 border border-white/20 rounded-lg focus:outline-none focus:ring-2 focus:ring-white"> | |
</div> | |
<div class="mb-6"> | |
<label for="email" class="block mb-2 font-medium">Email Address</label> | |
<input type="email" id="email" class="w-full px-4 py-3 bg-white/10 border border-white/20 rounded-lg focus:outline-none focus:ring-2 focus:ring-white"> | |
</div> | |
<div class="mb-6"> | |
<label for="message" class="block mb-2 font-medium">Your Message</label> | |
<textarea id="message" rows="4" class="w-full px-4 py-3 bg-white/10 border border-white/20 rounded-lg focus:outline-none focus:ring-2 focus:ring-white"></textarea> | |
</div> | |
<button type="submit" class="w-full bg-white text-indigo-600 px-6 py-3 rounded-lg font-bold hover:bg-opacity-90 transition"> | |
Send Message | |
</button> | |
</form> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Footer --> | |
<footer class="py-8 px-6 bg-slate-900 text-white"> | |
<div class="container mx-auto"> | |
<div class="flex flex-col md:flex-row justify-between items-center"> | |
<div class="mb-4 md:mb-0"> | |
<a href="#" class="text-2xl font-bold gradient-text">Rupinder.</a> | |
<p class="text-sm text-slate-400 mt-1">Web Developer & UI Enthusiast</p> | |
</div> | |
<div class="flex space-x-6"> | |
<a href="#home" class="text-slate-400 hover:text-white transition">Home</a> | |
<a href="#about" class="text-slate-400 hover:text-white transition">About</a> | |
<a href="#skills" class="text-slate-400 hover:text-white transition">Skills</a> | |
<a href="#projects" class="text-slate-400 hover:text-white transition">Projects</a> | |
<a href="#contact" class="text-slate-400 hover:text-white transition">Contact</a> | |
</div> | |
</div> | |
<hr class="border-slate-800 my-6"> | |
<div class="flex flex-col md:flex-row justify-between items-center text-sm text-slate-400"> | |
<p>© 2024 Rupinder Kaur. All rights reserved.</p> | |
<div class="mt-4 md:mt-0"> | |
<a href="#" class="hover:text-white transition">Privacy Policy</a> | |
<span class="mx-2">•</span> | |
<a href="#" class="hover:text-white transition">Terms of Service</a> | |
</div> | |
</div> | |
</div> | |
</footer> | |
<script> | |
// 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' | |
}); | |
}); | |
}); | |
// Animation for project cards on scroll | |
const observerOptions = { | |
threshold: 0.1 | |
}; | |
const observer = new IntersectionObserver((entries) => { | |
entries.forEach(entry => { | |
if (entry.isIntersecting) { | |
entry.target.style.opacity = '1'; | |
entry.target.style.transform = 'translateY(0)'; | |
} | |
}); | |
}, observerOptions); | |
document.querySelectorAll('.project-card').forEach(card => { | |
card.style.opacity = '0'; | |
card.style.transform = 'translateY(20px)'; | |
card.style.transition = 'all 0.6s ease'; | |
observer.observe(card); | |
}); | |
</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=jaskaransingh/rupinder" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
</html> |