|
<!DOCTYPE html> |
|
<html lang="en"> |
|
<head> |
|
<meta charset="UTF-8"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
<title>Shravan Kumar | Full Stack Developer</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> |
|
|
|
@keyframes fadeIn { |
|
from { opacity: 0; transform: translateY(20px); } |
|
to { opacity: 1; transform: translateY(0); } |
|
} |
|
|
|
.fade-in { |
|
animation: fadeIn 0.8s ease-out forwards; |
|
} |
|
|
|
.delay-1 { animation-delay: 0.2s; } |
|
.delay-2 { animation-delay: 0.4s; } |
|
.delay-3 { animation-delay: 0.6s; } |
|
.delay-4 { animation-delay: 0.8s; } |
|
|
|
.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); |
|
} |
|
|
|
.nav-link { |
|
position: relative; |
|
} |
|
|
|
.nav-link::after { |
|
content: ''; |
|
position: absolute; |
|
width: 0; |
|
height: 2px; |
|
bottom: -2px; |
|
left: 0; |
|
background-color: #3b82f6; |
|
transition: width 0.3s ease; |
|
} |
|
|
|
.nav-link:hover::after { |
|
width: 100%; |
|
} |
|
|
|
.active::after { |
|
width: 100%; |
|
} |
|
</style> |
|
</head> |
|
<body class="bg-gray-50 font-sans antialiased text-gray-800"> |
|
|
|
<nav class="fixed w-full bg-white shadow-sm z-50"> |
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
|
<div class="flex justify-between h-16"> |
|
<div class="flex items-center"> |
|
<a href="#home" class="text-xl font-bold gradient-text">SK</a> |
|
</div> |
|
<div class="hidden md:flex items-center space-x-8"> |
|
<a href="#home" class="nav-link active">Home</a> |
|
<a href="#about" class="nav-link">About</a> |
|
<a href="#skills" class="nav-link">Skills</a> |
|
<a href="#projects" class="nav-link">Projects</a> |
|
<a href="#contact" class="nav-link">Contact</a> |
|
</div> |
|
<div class="md:hidden flex items-center"> |
|
<button id="menu-btn" class="text-gray-600 hover:text-gray-900"> |
|
<svg class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor"> |
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" /> |
|
</svg> |
|
</button> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<div id="mobile-menu" class="hidden md:hidden bg-white py-2 px-4 shadow-lg"> |
|
<div class="flex flex-col space-y-3"> |
|
<a href="#home" class="nav-link active">Home</a> |
|
<a href="#about" class="nav-link">About</a> |
|
<a href="#skills" class="nav-link">Skills</a> |
|
<a href="#projects" class="nav-link">Projects</a> |
|
<a href="#contact" class="nav-link">Contact</a> |
|
</div> |
|
</div> |
|
</nav> |
|
|
|
|
|
<section id="home" class="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="flex flex-col md:flex-row items-center"> |
|
<div class="md:w-1/2 mb-10 md:mb-0 fade-in"> |
|
<h1 class="text-4xl md:text-5xl lg:text-6xl font-bold mb-4"> |
|
Hi, I'm <span class="gradient-text">Shravan Kumar</span> |
|
</h1> |
|
<h2 class="text-2xl md:text-3xl text-gray-600 mb-6">Full Stack Developer</h2> |
|
<p class="text-lg text-gray-600 mb-8 max-w-lg"> |
|
I build exceptional digital experiences with clean, efficient code and modern technologies. |
|
</p> |
|
<div class="flex space-x-4"> |
|
<a href="#contact" class="bg-blue-600 hover:bg-blue-700 text-white px-6 py-3 rounded-lg font-medium transition duration-300"> |
|
Contact Me |
|
</a> |
|
<a href="#projects" class="border border-blue-600 text-blue-600 hover:bg-blue-50 px-6 py-3 rounded-lg font-medium transition duration-300"> |
|
View Work |
|
</a> |
|
</div> |
|
</div> |
|
<div class="md:w-1/2 flex justify-center fade-in delay-1"> |
|
<div class="relative"> |
|
<div class="w-64 h-64 md:w-80 md:h-80 bg-gradient-to-br from-blue-400 to-purple-500 rounded-full flex items-center justify-center"> |
|
<img src="https://media.licdn.com/dms/image/D5603AQH3ZQ1l1Ql9gA/profile-displayphoto-shrink_400_400/0/1685360513502?e=1721260800&v=beta&t=1Q4Y0QYJQZQZQZQZQZQZQZQZQZQZQZQZQZQZQZQZQ" |
|
alt="Shravan Kumar" |
|
class="w-60 h-60 md:w-72 md:h-72 rounded-full object-cover border-4 border-white"> |
|
</div> |
|
<div class="absolute -bottom-5 -right-5 bg-white p-3 rounded-full shadow-lg"> |
|
<div class="bg-blue-100 p-3 rounded-full"> |
|
<i class="fas fa-code text-blue-600 text-xl"></i> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<section id="about" class="py-20 bg-white"> |
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
|
<h2 class="text-3xl font-bold text-center mb-16 fade-in"> |
|
<span class="gradient-text">About Me</span> |
|
</h2> |
|
|
|
<div class="flex flex-col md:flex-row gap-12"> |
|
<div class="md:w-1/2 fade-in delay-1"> |
|
<h3 class="text-2xl font-semibold mb-4">Who I Am</h3> |
|
<p class="text-gray-600 mb-6"> |
|
I'm a passionate Full Stack Developer with expertise in building web applications using modern technologies. |
|
Currently pursuing my Bachelor's degree in Computer Science and Engineering at Vellore Institute of Technology. |
|
</p> |
|
<p class="text-gray-600 mb-6"> |
|
With a strong foundation in both front-end and back-end development, I create seamless, user-friendly digital |
|
experiences that solve real-world problems. |
|
</p> |
|
<p class="text-gray-600 mb-8"> |
|
When I'm not coding, you can find me exploring new technologies, contributing to open-source projects, |
|
or sharing my knowledge with the developer community. |
|
</p> |
|
|
|
<div class="flex flex-wrap gap-4"> |
|
<div class="bg-blue-50 px-4 py-2 rounded-lg flex items-center"> |
|
<i class="fas fa-graduation-cap text-blue-600 mr-2"></i> |
|
<span>B.Tech CSE</span> |
|
</div> |
|
<div class="bg-purple-50 px-4 py-2 rounded-lg flex items-center"> |
|
<i class="fas fa-code-branch text-purple-600 mr-2"></i> |
|
<span>Full Stack</span> |
|
</div> |
|
<div class="bg-green-50 px-4 py-2 rounded-lg flex items-center"> |
|
<i class="fas fa-project-diagram text-green-600 mr-2"></i> |
|
<span>10+ Projects</span> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<div class="md:w-1/2 fade-in delay-2"> |
|
<h3 class="text-2xl font-semibold mb-6">Experience & Education</h3> |
|
|
|
<div class="space-y-8"> |
|
|
|
<div class="flex"> |
|
<div class="flex flex-col items-center mr-4"> |
|
<div class="w-10 h-10 bg-blue-100 rounded-full flex items-center justify-center"> |
|
<i class="fas fa-briefcase text-blue-600"></i> |
|
</div> |
|
<div class="w-px h-full bg-gray-200"></div> |
|
</div> |
|
<div class="pb-8"> |
|
<h4 class="font-semibold">Full Stack Developer</h4> |
|
<p class="text-sm text-gray-500 mb-1">Freelance | 2022 - Present</p> |
|
<p class="text-gray-600"> |
|
Developed full-stack applications for clients using React, Node.js, and MongoDB. |
|
Created responsive UIs and implemented RESTful APIs. |
|
</p> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="flex"> |
|
<div class="flex flex-col items-center mr-4"> |
|
<div class="w-10 h-10 bg-purple-100 rounded-full flex items-center justify-center"> |
|
<i class="fas fa-university text-purple-600"></i> |
|
</div> |
|
<div class="w-px h-full bg-gray-200"></div> |
|
</div> |
|
<div class="pb-8"> |
|
<h4 class="font-semibold">Bachelor of Technology</h4> |
|
<p class="text-sm text-gray-500 mb-1">Vellore Institute of Technology | 2021 - 2025</p> |
|
<p class="text-gray-600"> |
|
Computer Science and Engineering with specialization in AI and Machine Learning. |
|
</p> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="flex"> |
|
<div class="flex flex-col items-center mr-4"> |
|
<div class="w-10 h-10 bg-green-100 rounded-full flex items-center justify-center"> |
|
<i class="fas fa-school text-green-600"></i> |
|
</div> |
|
</div> |
|
<div> |
|
<h4 class="font-semibold">Higher Secondary</h4> |
|
<p class="text-sm text-gray-500 mb-1">Narayana Junior College | 2019 - 2021</p> |
|
<p class="text-gray-600"> |
|
Completed 11th and 12th grade with specialization in Mathematics, Physics, and Chemistry. |
|
</p> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<section id="skills" class="py-20 bg-gray-50"> |
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
|
<h2 class="text-3xl font-bold text-center mb-16 fade-in"> |
|
<span class="gradient-text">My Skills</span> |
|
</h2> |
|
|
|
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> |
|
|
|
<div class="bg-white p-6 rounded-xl shadow-sm hover:shadow-md transition duration-300 fade-in delay-1"> |
|
<div class="flex items-center mb-4"> |
|
<div class="bg-blue-100 p-2 rounded-lg mr-4"> |
|
<i class="fas fa-laptop-code text-blue-600 text-xl"></i> |
|
</div> |
|
<h3 class="text-xl font-semibold">Frontend Development</h3> |
|
</div> |
|
<div class="flex flex-wrap gap-3"> |
|
<div class="bg-blue-50 px-3 py-1 rounded-full text-sm">HTML5</div> |
|
<div class="bg-blue-50 px-3 py-1 rounded-full text-sm">CSS3</div> |
|
<div class="bg-blue-50 px-3 py-1 rounded-full text-sm">JavaScript</div> |
|
<div class="bg-blue-50 px-3 py-1 rounded-full text-sm">React</div> |
|
<div class="bg-blue-50 px-3 py-1 rounded-full text-sm">Tailwind CSS</div> |
|
<div class="bg-blue-50 px-3 py-1 rounded-full text-sm">Bootstrap</div> |
|
<div class="bg-blue-50 px-3 py-1 rounded-full text-sm">jQuery</div> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="bg-white p-6 rounded-xl shadow-sm hover:shadow-md transition duration-300 fade-in delay-2"> |
|
<div class="flex items-center mb-4"> |
|
<div class="bg-purple-100 p-2 rounded-lg mr-4"> |
|
<i class="fas fa-server text-purple-600 text-xl"></i> |
|
</div> |
|
<h3 class="text-xl font-semibold">Backend Development</h3> |
|
</div> |
|
<div class="flex flex-wrap gap-3"> |
|
<div class="bg-purple-50 px-3 py-1 rounded-full text-sm">Node.js</div> |
|
<div class="bg-purple-50 px-3 py-1 rounded-full text-sm">Express</div> |
|
<div class="bg-purple-50 px-3 py-1 rounded-full text-sm">Python</div> |
|
<div class="bg-purple-50 px-3 py-1 rounded-full text-sm">Django</div> |
|
<div class="bg-purple-50 px-3 py-1 rounded-full text-sm">REST APIs</div> |
|
<div class="bg-purple-50 px-3 py-1 rounded-full text-sm">GraphQL</div> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="bg-white p-6 rounded-xl shadow-sm hover:shadow-md transition duration-300 fade-in delay-3"> |
|
<div class="flex items-center mb-4"> |
|
<div class="bg-green-100 p-2 rounded-lg mr-4"> |
|
<i class="fas fa-database text-green-600 text-xl"></i> |
|
</div> |
|
<h3 class="text-xl font-semibold">Database & Tools</h3> |
|
</div> |
|
<div class="flex flex-wrap gap-3"> |
|
<div class="bg-green-50 px-3 py-1 rounded-full text-sm">MongoDB</div> |
|
<div class="bg-green-50 px-3 py-1 rounded-full text-sm">MySQL</div> |
|
<div class="bg-green-50 px-3 py-1 rounded-full text-sm">PostgreSQL</div> |
|
<div class="bg-green-50 px-3 py-1 rounded-full text-sm">Firebase</div> |
|
<div class="bg-green-50 px-3 py-1 rounded-full text-sm">Git</div> |
|
<div class="bg-green-50 px-3 py-1 rounded-full text-sm">Docker</div> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="bg-white p-6 rounded-xl shadow-sm hover:shadow-md transition duration-300 fade-in delay-1"> |
|
<div class="flex items-center mb-4"> |
|
<div class="bg-yellow-100 p-2 rounded-lg mr-4"> |
|
<i class="fas fa-brain text-yellow-600 text-xl"></i> |
|
</div> |
|
<h3 class="text-xl font-semibold">AI/ML</h3> |
|
</div> |
|
<div class="flex flex-wrap gap-3"> |
|
<div class="bg-yellow-50 px-3 py-1 rounded-full text-sm">Python</div> |
|
<div class="bg-yellow-50 px-3 py-1 rounded-full text-sm">TensorFlow</div> |
|
<div class="bg-yellow-50 px-3 py-1 rounded-full text-sm">Scikit-learn</div> |
|
<div class="bg-yellow-50 px-3 py-1 rounded-full text-sm">Numpy</div> |
|
<div class="bg-yellow-50 px-3 py-1 rounded-full text-sm">Pandas</div> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="bg-white p-6 rounded-xl shadow-sm hover:shadow-md transition duration-300 fade-in delay-2"> |
|
<div class="flex items-center mb-4"> |
|
<div class="bg-red-100 p-2 rounded-lg mr-4"> |
|
<i class="fas fa-users text-red-600 text-xl"></i> |
|
</div> |
|
<h3 class="text-xl font-semibold">Soft Skills</h3> |
|
</div> |
|
<div class="flex flex-wrap gap-3"> |
|
<div class="bg-red-50 px-3 py-1 rounded-full text-sm">Problem Solving</div> |
|
<div class="bg-red-50 px-3 py-1 rounded-full text-sm">Teamwork</div> |
|
<div class="bg-red-50 px-3 py-1 rounded-full text-sm">Communication</div> |
|
<div class="bg-red-50 px-3 py-1 rounded-full text-sm">Leadership</div> |
|
<div class="bg-red-50 px-3 py-1 rounded-full text-sm">Time Management</div> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="bg-white p-6 rounded-xl shadow-sm hover:shadow-md transition duration-300 fade-in delay-3"> |
|
<div class="flex items-center mb-4"> |
|
<div class="bg-indigo-100 p-2 rounded-lg mr-4"> |
|
<i class="fas fa-language text-indigo-600 text-xl"></i> |
|
</div> |
|
<h3 class="text-xl font-semibold">Languages</h3> |
|
</div> |
|
<div class="flex flex-wrap gap-3"> |
|
<div class="bg-indigo-50 px-3 py-1 rounded-full text-sm">English (Fluent)</div> |
|
<div class="bg-indigo-50 px-3 py-1 rounded-full text-sm">Hindi (Fluent)</div> |
|
<div class="bg-indigo-50 px-3 py-1 rounded-full text-sm">Telugu (Native)</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<section id="projects" class="py-20 bg-white"> |
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
|
<h2 class="text-3xl font-bold text-center mb-16 fade-in"> |
|
<span class="gradient-text">My Projects</span> |
|
</h2> |
|
|
|
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> |
|
|
|
<div class="project-card bg-gray-50 rounded-xl overflow-hidden transition duration-300 fade-in delay-1"> |
|
<div class="h-48 bg-gradient-to-r from-blue-400 to-purple-500 flex items-center justify-center"> |
|
<i class="fas fa-shopping-cart text-white text-6xl"></i> |
|
</div> |
|
<div class="p-6"> |
|
<h3 class="text-xl font-semibold mb-2">E-commerce Platform</h3> |
|
<p class="text-gray-600 mb-4"> |
|
A full-featured e-commerce platform with product listings, cart functionality, and secure checkout. |
|
</p> |
|
<div class="flex flex-wrap gap-2 mb-4"> |
|
<span class="text-xs bg-blue-100 text-blue-800 px-2 py-1 rounded">React</span> |
|
<span class="text-xs bg-purple-100 text-purple-800 px-2 py-1 rounded">Node.js</span> |
|
<span class="text-xs bg-green-100 text-green-800 px-2 py-1 rounded">MongoDB</span> |
|
</div> |
|
<div class="flex space-x-3"> |
|
<a href="#" class="text-blue-600 hover:text-blue-800"> |
|
<i class="fab fa-github"></i> Code |
|
</a> |
|
<a href="#" class="text-blue-600 hover:text-blue-800"> |
|
<i class="fas fa-external-link-alt"></i> Live Demo |
|
</a> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="project-card bg-gray-50 rounded-xl overflow-hidden transition duration-300 fade-in delay-2"> |
|
<div class="h-48 bg-gradient-to-r from-purple-400 to-pink-500 flex items-center justify-center"> |
|
<i class="fas fa-chart-line text-white text-6xl"></i> |
|
</div> |
|
<div class="p-6"> |
|
<h3 class="text-xl font-semibold mb-2">Stock Market Analyzer</h3> |
|
<p class="text-gray-600 mb-4"> |
|
Machine learning application that analyzes stock market trends and predicts future prices. |
|
</p> |
|
<div class="flex flex-wrap gap-2 mb-4"> |
|
<span class="text-xs bg-yellow-100 text-yellow-800 px-2 py-1 rounded">Python</span> |
|
<span class="text-xs bg-red-100 text-red-800 px-2 py-1 rounded">TensorFlow</span> |
|
<span class="text-xs bg-blue-100 text-blue-800 px-2 py-1 rounded">Flask</span> |
|
</div> |
|
<div class="flex space-x-3"> |
|
<a href="#" class="text-blue-600 hover:text-blue-800"> |
|
<i class="fab fa-github"></i> Code |
|
</a> |
|
<a href="#" class="text-blue-600 hover:text-blue-800"> |
|
<i class="fas fa-external-link-alt"></i> Live Demo |
|
</a> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="project-card bg-gray-50 rounded-xl overflow-hidden transition duration-300 fade-in delay-3"> |
|
<div class="h-48 bg-gradient-to-r from-green-400 to-blue-500 flex items-center justify-center"> |
|
<i class="fas fa-blog text-white text-6xl"></i> |
|
</div> |
|
<div class="p-6"> |
|
<h3 class="text-xl font-semibold mb-2">Blog Platform</h3> |
|
<p class="text-gray-600 mb-4"> |
|
A modern blog platform with user authentication, rich text editing, and comment functionality. |
|
</p> |
|
<div class="flex flex-wrap gap-2 mb-4"> |
|
<span class="text-xs bg-blue-100 text-blue-800 px-2 py-1 rounded">React</span> |
|
<span class="text-xs bg-gray-100 text-gray-800 px-2 py-1 rounded">GraphQL</span> |
|
<span class="text-xs bg-green-100 text-green-800 px-2 py-1 rounded">PostgreSQL</span> |
|
</div> |
|
<div class="flex space-x-3"> |
|
<a href="#" class="text-blue-600 hover:text-blue-800"> |
|
<i class="fab fa-github"></i> Code |
|
</a> |
|
<a href="#" class="text-blue-600 hover:text-blue-800"> |
|
<i class="fas fa-external-link-alt"></i> Live Demo |
|
</a> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="project-card bg-gray-50 rounded-xl overflow-hidden transition duration-300 fade-in delay-1"> |
|
<div class="h-48 bg-gradient-to-r from-red-400 to-orange-500 flex items-center justify-center"> |
|
<i class="fas fa-video text-white text-6xl"></i> |
|
</div> |
|
<div class="p-6"> |
|
<h3 class="text-xl font-semibold mb-2">Video Conferencing App</h3> |
|
<p class="text-gray-600 mb-4"> |
|
Real-time video conferencing application with screen sharing and chat functionality. |
|
</p> |
|
<div class="flex flex-wrap gap-2 mb-4"> |
|
<span class="text-xs bg-blue-100 text-blue-800 px-2 py-1 rounded">WebRTC</span> |
|
<span class="text-xs bg-purple-100 text-purple-800 px-2 py-1 rounded">Socket.io</span> |
|
<span class="text-xs bg-green-100 text-green-800 px-2 py-1 rounded">Node.js</span> |
|
</div> |
|
<div class="flex space-x-3"> |
|
<a href="#" class="text-blue-600 hover:text-blue-800"> |
|
<i class="fab fa-github"></i> Code |
|
</a> |
|
<a href="#" class="text-blue-600 hover:text-blue-800"> |
|
<i class="fas fa-external-link-alt"></i> Live Demo |
|
</a> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="project-card bg-gray-50 rounded-xl overflow-hidden transition duration-300 fade-in delay-2"> |
|
<div class="h-48 bg-gradient-to-r from-indigo-400 to-blue-500 flex items-center justify-center"> |
|
<i class="fas fa-tasks text-white text-6xl"></i> |
|
</div> |
|
<div class="p-6"> |
|
<h3 class="text-xl font-semibold mb-2">Task Management App</h3> |
|
<p class="text-gray-600 mb-4"> |
|
Productivity application for managing tasks with drag-and-drop functionality and team collaboration. |
|
</p> |
|
<div class="flex flex-wrap gap-2 mb-4"> |
|
<span class="text-xs bg-blue-100 text-blue-800 px-2 py-1 rounded">React</span> |
|
<span class="text-xs bg-purple-100 text-purple-800 px-2 py-1 rounded">Redux</span> |
|
<span class="text-xs bg-green-100 text-green-800 px-2 py-1 rounded">Firebase</span> |
|
</div> |
|
<div class="flex space-x-3"> |
|
<a href="#" class="text-blue-600 hover:text-blue-800"> |
|
<i class="fab fa-github"></i> Code |
|
</a> |
|
<a href="#" class="text-blue-600 hover:text-blue-800"> |
|
<i class="fas fa-external-link-alt"></i> Live Demo |
|
</a> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="project-card bg-gray-50 rounded-xl overflow-hidden transition duration-300 fade-in delay-3"> |
|
<div class="h-48 bg-gradient-to-r from-pink-400 to-red-500 flex items-center justify-center"> |
|
<i class="fas fa-robot text-white text-6xl"></i> |
|
</div> |
|
<div class="p-6"> |
|
<h3 class="text-xl font-semibold mb-2">AI Chatbot</h3> |
|
<p class="text-gray-600 mb-4"> |
|
Conversational AI chatbot that understands natural language and provides contextual responses. |
|
</p> |
|
<div class="flex flex-wrap gap-2 mb-4"> |
|
<span class="text-xs bg-yellow-100 text-yellow-800 px-2 py-1 rounded">Python</span> |
|
<span class="text-xs bg-red-100 text-red-800 px-2 py-1 rounded">NLTK</span> |
|
<span class="text-xs bg-blue-100 text-blue-800 px-2 py-1 rounded">Flask</span> |
|
</div> |
|
<div class="flex space-x-3"> |
|
<a href="#" class="text-blue-600 hover:text-blue-800"> |
|
<i class="fab fa-github"></i> Code |
|
</a> |
|
<a href="#" class="text-blue-600 hover:text-blue-800"> |
|
<i class="fas fa-external-link-alt"></i> Live Demo |
|
</a> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<div class="text-center mt-12 fade-in delay-4"> |
|
<a href="#" class="inline-flex items-center px-6 py-3 border border-blue-600 text-blue-600 hover:bg-blue-50 rounded-lg font-medium transition duration-300"> |
|
<i class="fab fa-github mr-2"></i> View All Projects on GitHub |
|
</a> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<section id="contact" class="py-20 bg-gray-50"> |
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
|
<h2 class="text-3xl font-bold text-center mb-16 fade-in"> |
|
<span class="gradient-text">Get In Touch</span> |
|
</h2> |
|
|
|
<div class="flex flex-col lg:flex-row gap-12"> |
|
<div class="lg:w-1/2 fade-in delay-1"> |
|
<h3 class="text-2xl font-semibold mb-6">Contact Information</h3> |
|
<p class="text-gray-600 mb-8"> |
|
Have a project in mind or want to discuss potential opportunities? Feel free to reach out! |
|
</p> |
|
|
|
<div class="space-y-6"> |
|
<div class="flex items-start"> |
|
<div class="bg-blue-100 p-3 rounded-lg mr-4"> |
|
<i class="fas fa-envelope text-blue-600"></i> |
|
</div> |
|
<div> |
|
<h4 class="font-medium">Email</h4> |
|
<a href="mailto:[email protected]" class="text-gray-600 hover:text-blue-600">[email protected]</a> |
|
</div> |
|
</div> |
|
|
|
<div class="flex items-start"> |
|
<div class="bg-purple-100 p-3 rounded-lg mr-4"> |
|
<i class="fas fa-phone-alt text-purple-600"></i> |
|
</div> |
|
<div> |
|
<h4 class="font-medium">Phone</h4> |
|
<a href="tel:+919876543210" class="text-gray-600 hover:text-blue-600">+91 9876543210</a> |
|
</div> |
|
</div> |
|
|
|
<div class="flex items-start"> |
|
<div class="bg-green-100 p-3 rounded-lg mr-4"> |
|
<i class="fas fa-map-marker-alt text-green-600"></i> |
|
</div> |
|
<div> |
|
<h4 class="font-medium">Location</h4> |
|
<p class="text-gray-600">Vellore, Tamil Nadu, India</p> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<div class="mt-10"> |
|
<h4 class="font-medium mb-4">Connect with me</h4> |
|
<div class="flex space-x-4"> |
|
<a href="https://www.linkedin.com/in/shravankumar147/" target="_blank" class="bg-blue-100 hover:bg-blue-200 w-10 h-10 rounded-full flex items-center justify-center transition duration-300"> |
|
<i class="fab fa-linkedin-in text-blue-600"></i> |
|
</a> |
|
<a href="https://github.com/shravankumar147" target="_blank" class="bg-gray-100 hover:bg-gray-200 w-10 h-10 rounded-full flex items-center justify-center transition duration-300"> |
|
<i class="fab fa-github text-gray-800"></i> |
|
</a> |
|
<a href="https://twitter.com/shravankumar147" target="_blank" class="bg-blue-100 hover:bg-blue-200 w-10 h-10 rounded-full flex items-center justify-center transition duration-300"> |
|
<i class="fab fa-twitter text-blue-400"></i> |
|
</a> |
|
<a href="https://www.instagram.com/shravankumar147/" target="_blank" class="bg-pink-100 hover:bg-pink-200 w-10 h-10 rounded-full flex items-center justify-center transition duration-300"> |
|
<i class="fab fa-instagram text-pink-600"></i> |
|
</a> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<div class="lg:w-1/2 fade-in delay-2"> |
|
<form class="bg-white p-8 rounded-xl shadow-sm"> |
|
<div class="mb-6"> |
|
<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-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent" placeholder="Your Name"> |
|
</div> |
|
|
|
<div class="mb-6"> |
|
<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-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent" placeholder="Your Email"> |
|
</div> |
|
|
|
<div class="mb-6"> |
|
<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-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent" placeholder="Subject"> |
|
</div> |
|
|
|
<div class="mb-6"> |
|
<label for="message" class="block text-gray-700 font-medium mb-2">Message</label> |
|
<textarea id="message" rows="5" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent" placeholder="Your Message"></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 duration-300"> |
|
Send Message |
|
</button> |
|
</form> |
|
</div> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<footer class="bg-gray-900 text-white py-12"> |
|
<div class="max-w-7xl 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"> |
|
<a href="#home" class="text-xl font-bold gradient-text">Shravan Kumar</a> |
|
<p class="text-gray-400 mt-2">Full Stack Developer</p> |
|
</div> |
|
|
|
<div class="flex flex-col items-center md:items-end"> |
|
<div class="flex space-x-6 mb-4"> |
|
<a href="https://www.linkedin.com/in/shravankumar147/" target="_blank" class="text-gray-400 hover:text-white transition duration-300"> |
|
<i class="fab fa-linkedin-in text-lg"></i> |
|
</a> |
|
<a href="https://github.com/shravankumar147" target="_blank" class="text-gray-400 hover:text-white transition duration-300"> |
|
<i class="fab fa-github text-lg"></i> |
|
</a> |
|
<a href="https://twitter.com/shravankumar147" target="_blank" class="text-gray-400 hover:text-white transition duration-300"> |
|
<i class="fab fa-twitter text-lg"></i> |
|
</a> |
|
<a href="https://www.instagram.com/shravankumar147/" target="_blank" class="text-gray-400 hover:text-white transition duration-300"> |
|
<i class="fab fa-instagram text-lg"></i> |
|
</a> |
|
</div> |
|
<p class="text-gray-400 text-sm">© 2023 Shravan Kumar. All rights reserved.</p> |
|
</div> |
|
</div> |
|
</div> |
|
</footer> |
|
|
|
<script> |
|
|
|
document.getElementById('menu-btn').addEventListener('click', function() { |
|
const menu = document.getElementById('mobile-menu'); |
|
menu.classList.toggle('hidden'); |
|
}); |
|
|
|
|
|
document.querySelectorAll('a[href^="#"]').forEach(anchor => { |
|
anchor.addEventListener('click', function (e) { |
|
e.preventDefault(); |
|
|
|
|
|
document.getElementById('mobile-menu').classList.add('hidden'); |
|
|
|
|
|
const targetId = this.getAttribute('href'); |
|
const targetElement = document.querySelector(targetId); |
|
if (targetElement) { |
|
window.scrollTo({ |
|
top: targetElement.offsetTop - 80, |
|
behavior: 'smooth' |
|
}); |
|
|
|
|
|
document.querySelectorAll('.nav-link').forEach(link => { |
|
link.classList.remove('active'); |
|
}); |
|
this.classList.add('active'); |
|
} |
|
}); |
|
}); |
|
|
|
|
|
window.addEventListener('scroll', function() { |
|
const sections = document.querySelectorAll('section'); |
|
const scrollPosition = window.scrollY + 100; |
|
|
|
sections.forEach(section => { |
|
const sectionTop = section.offsetTop; |
|
const sectionHeight = section.offsetHeight; |
|
const sectionId = section.getAttribute('id'); |
|
|
|
if (scrollPosition >= sectionTop && scrollPosition < sectionTop + sectionHeight) { |
|
document.querySelectorAll('.nav-link').forEach(link => { |
|
link.classList.remove('active'); |
|
if (link.getAttribute('href') === `#${sectionId}`) { |
|
link.classList.add('active'); |
|
} |
|
}); |
|
} |
|
}); |
|
}); |
|
|
|
|
|
const fadeElements = document.querySelectorAll('.fade-in'); |
|
|
|
const fadeObserver = new IntersectionObserver((entries) => { |
|
entries.forEach(entry => { |
|
if (entry.isIntersecting) { |
|
entry.target.style.opacity = 1; |
|
entry.target.style.transform = 'translateY(0)'; |
|
} |
|
}); |
|
}, { threshold: 0.1 }); |
|
|
|
fadeElements.forEach(element => { |
|
element.style.opacity = 0; |
|
element.style.transform = 'translateY(20px)'; |
|
element.style.transition = 'opacity 0.6s ease, transform 0.6s ease'; |
|
fadeObserver.observe(element); |
|
}); |
|
</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=shravankumar147/my-awesome-space" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> |
|
</html> |