DavidKRK's picture
Add 3 files
ecbc22b verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>David KRK | 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;
scroll-behavior: smooth;
}
.gradient-text {
background: linear-gradient(90deg, #3b82f6, #8b5cf6);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.card-hover {
transition: all 0.3s ease;
}
.card-hover:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.nav-link {
position: relative;
}
.nav-link::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: 0;
left: 0;
background: linear-gradient(90deg, #3b82f6, #8b5cf6);
transition: width 0.3s ease;
}
.nav-link:hover::after {
width: 100%;
}
.hero-pattern {
background-image: radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
}
.wave-shape {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
overflow: hidden;
line-height: 0;
}
.wave-shape svg {
position: relative;
display: block;
width: calc(100% + 1.3px);
height: 150px;
}
.wave-shape .shape-fill {
fill: #FFFFFF;
}
</style>
</head>
<body class="bg-gray-50 text-gray-800">
<!-- Navigation -->
<nav class="fixed w-full bg-white shadow-sm z-50">
<div class="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-16">
<div class="flex items-center">
<a href="#" class="text-xl font-bold gradient-text">David KRK</a>
</div>
<div class="hidden md:flex items-center space-x-8">
<a href="#home" class="nav-link text-gray-700 hover:text-indigo-600 px-3 py-2">Home</a>
<a href="#about" class="nav-link text-gray-700 hover:text-indigo-600 px-3 py-2">About</a>
<a href="#projects" class="nav-link text-gray-700 hover:text-indigo-600 px-3 py-2">Projects</a>
<a href="#skills" class="nav-link text-gray-700 hover:text-indigo-600 px-3 py-2">Skills</a>
<a href="#contact" class="nav-link text-gray-700 hover:text-indigo-600 px-3 py-2">Contact</a>
</div>
<div class="md:hidden flex items-center">
<button id="menu-btn" class="text-gray-500 hover:text-gray-900 focus:outline-none">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
</div>
</div>
<!-- Mobile menu -->
<div id="mobile-menu" class="hidden md:hidden bg-white shadow-lg">
<div class="px-2 pt-2 pb-3 space-y-1 sm:px-3">
<a href="#home" class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:text-indigo-600 hover:bg-gray-50">Home</a>
<a href="#about" class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:text-indigo-600 hover:bg-gray-50">About</a>
<a href="#projects" class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:text-indigo-600 hover:bg-gray-50">Projects</a>
<a href="#skills" class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:text-indigo-600 hover:bg-gray-50">Skills</a>
<a href="#contact" class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:text-indigo-600 hover:bg-gray-50">Contact</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="hero-pattern pt-24 pb-20 md:pt-32 md:pb-28 relative overflow-hidden">
<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 lg:text-6xl font-bold mb-4">
Hi, I'm <span class="gradient-text">David KRK</span>
</h1>
<h2 class="text-2xl md:text-3xl text-gray-600 mb-6">
Full Stack Developer
</h2>
<p class="text-gray-500 mb-8 max-w-lg">
I build exceptional digital experiences that are fast, accessible, and visually appealing.
</p>
<div class="flex space-x-4">
<a href="#projects" class="px-6 py-3 bg-gradient-to-r from-blue-500 to-indigo-600 text-white rounded-lg shadow-lg hover:shadow-xl transition duration-300">
View My Work
</a>
<a href="#contact" class="px-6 py-3 border-2 border-indigo-500 text-indigo-600 rounded-lg hover:bg-indigo-50 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 rounded-full bg-gradient-to-r from-blue-100 to-indigo-100 flex items-center justify-center">
<img src="https://avatars.githubusercontent.com/u/12345678?v=4" alt="David KRK" class="w-60 h-60 md:w-72 md:h-72 rounded-full object-cover border-4 border-white shadow-lg">
</div>
<div class="absolute -bottom-5 -right-5 bg-white p-3 rounded-full shadow-lg">
<div class="w-12 h-12 bg-gradient-to-r from-blue-500 to-indigo-600 rounded-full flex items-center justify-center">
<i class="fas fa-code text-white text-xl"></i>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="wave-shape">
<svg data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none">
<path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" class="shape-fill"></path>
</svg>
</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">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">About <span class="gradient-text">Me</span></h2>
<div class="w-20 h-1 bg-gradient-to-r from-blue-500 to-indigo-600 mx-auto"></div>
</div>
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/3 mb-10 md:mb-0 flex justify-center">
<div class="relative">
<div class="w-64 h-64 rounded-lg overflow-hidden shadow-xl">
<img src="https://images.unsplash.com/photo-1571171637578-41bc2dd41cd2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="About me" class="w-full h-full object-cover">
</div>
<div class="absolute -bottom-5 -left-5 bg-white p-4 rounded-lg shadow-lg">
<div class="flex items-center">
<div class="w-10 h-10 bg-gradient-to-r from-blue-500 to-indigo-600 rounded-full flex items-center justify-center mr-3">
<i class="fas fa-user-tie text-white"></i>
</div>
<div>
<p class="text-sm font-medium text-gray-600">Experience</p>
<p class="text-lg font-bold gradient-text">5+ Years</p>
</div>
</div>
</div>
</div>
</div>
<div class="md:w-2/3 md:pl-12">
<h3 class="text-2xl font-semibold mb-4">Who am I?</h3>
<p class="text-gray-600 mb-6">
I'm a passionate Full Stack Developer with expertise in building web applications using modern technologies. I love solving complex problems and creating efficient, scalable solutions.
</p>
<p class="text-gray-600 mb-8">
With a strong foundation in computer science and years of hands-on experience, I've worked on various projects ranging from small business websites to large-scale enterprise applications.
</p>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<div class="flex items-start">
<div class="mr-4 mt-1">
<div class="w-10 h-10 bg-blue-100 rounded-full flex items-center justify-center">
<i class="fas fa-graduation-cap text-blue-600"></i>
</div>
</div>
<div>
<h4 class="font-semibold text-lg mb-1">Education</h4>
<p class="text-gray-600">Master's in Computer Science</p>
<p class="text-gray-500 text-sm">University of Technology, 2018</p>
</div>
</div>
<div class="flex items-start">
<div class="mr-4 mt-1">
<div class="w-10 h-10 bg-indigo-100 rounded-full flex items-center justify-center">
<i class="fas fa-briefcase text-indigo-600"></i>
</div>
</div>
<div>
<h4 class="font-semibold text-lg mb-1">Experience</h4>
<p class="text-gray-600">Senior Developer</p>
<p class="text-gray-500 text-sm">Tech Solutions Inc., 2019-Present</p>
</div>
</div>
<div class="flex items-start">
<div class="mr-4 mt-1">
<div class="w-10 h-10 bg-purple-100 rounded-full flex items-center justify-center">
<i class="fas fa-project-diagram text-purple-600"></i>
</div>
</div>
<div>
<h4 class="font-semibold text-lg mb-1">Projects</h4>
<p class="text-gray-600">50+ Completed</p>
<p class="text-gray-500 text-sm">Web & Mobile Applications</p>
</div>
</div>
<div class="flex items-start">
<div class="mr-4 mt-1">
<div class="w-10 h-10 bg-green-100 rounded-full flex items-center justify-center">
<i class="fas fa-medal text-green-600"></i>
</div>
</div>
<div>
<h4 class="font-semibold text-lg mb-1">Certifications</h4>
<p class="text-gray-600">AWS Certified</p>
<p class="text-gray-500 text-sm">Google Cloud Professional</p>
</div>
</div>
</div>
<div class="mt-8">
<a href="#" class="inline-flex items-center px-6 py-3 border border-transparent text-base font-medium rounded-md shadow-sm text-white bg-gradient-to-r from-blue-500 to-indigo-600 hover:from-blue-600 hover:to-indigo-700">
Download CV
<i class="fas fa-download ml-2"></i>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- Skills Section -->
<section id="skills" class="py-20 bg-gray-50">
<div class="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">My <span class="gradient-text">Skills</span></h2>
<div class="w-20 h-1 bg-gradient-to-r from-blue-500 to-indigo-600 mx-auto"></div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<div>
<h3 class="text-xl font-semibold mb-6">Technical Skills</h3>
<div class="space-y-6">
<div>
<div class="flex justify-between mb-2">
<span class="font-medium">HTML/CSS</span>
<span class="text-blue-600">95%</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2.5">
<div class="bg-gradient-to-r from-blue-500 to-indigo-600 h-2.5 rounded-full" style="width: 95%"></div>
</div>
</div>
<div>
<div class="flex justify-between mb-2">
<span class="font-medium">JavaScript</span>
<span class="text-blue-600">90%</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2.5">
<div class="bg-gradient-to-r from-blue-500 to-indigo-600 h-2.5 rounded-full" style="width: 90%"></div>
</div>
</div>
<div>
<div class="flex justify-between mb-2">
<span class="font-medium">React</span>
<span class="text-blue-600">85%</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2.5">
<div class="bg-gradient-to-r from-blue-500 to-indigo-600 h-2.5 rounded-full" style="width: 85%"></div>
</div>
</div>
<div>
<div class="flex justify-between mb-2">
<span class="font-medium">Node.js</span>
<span class="text-blue-600">80%</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2.5">
<div class="bg-gradient-to-r from-blue-500 to-indigo-600 h-2.5 rounded-full" style="width: 80%"></div>
</div>
</div>
</div>
</div>
<div>
<h3 class="text-xl font-semibold mb-6">Professional Skills</h3>
<div class="grid grid-cols-2 gap-4">
<div class="bg-white p-6 rounded-xl shadow-sm hover:shadow-md transition duration-300">
<div class="w-12 h-12 bg-blue-100 rounded-full flex items-center justify-center mb-4">
<i class="fas fa-users text-blue-600 text-xl"></i>
</div>
<h4 class="font-semibold mb-2">Teamwork</h4>
<p class="text-gray-500 text-sm">Collaborating effectively with cross-functional teams.</p>
</div>
<div class="bg-white p-6 rounded-xl shadow-sm hover:shadow-md transition duration-300">
<div class="w-12 h-12 bg-indigo-100 rounded-full flex items-center justify-center mb-4">
<i class="fas fa-lightbulb text-indigo-600 text-xl"></i>
</div>
<h4 class="font-semibold mb-2">Creativity</h4>
<p class="text-gray-500 text-sm">Innovative solutions to complex problems.</p>
</div>
<div class="bg-white p-6 rounded-xl shadow-sm hover:shadow-md transition duration-300">
<div class="w-12 h-12 bg-purple-100 rounded-full flex items-center justify-center mb-4">
<i class="fas fa-comments text-purple-600 text-xl"></i>
</div>
<h4 class="font-semibold mb-2">Communication</h4>
<p class="text-gray-500 text-sm">Clear and effective technical communication.</p>
</div>
<div class="bg-white p-6 rounded-xl shadow-sm hover:shadow-md transition duration-300">
<div class="w-12 h-12 bg-green-100 rounded-full flex items-center justify-center mb-4">
<i class="fas fa-tasks text-green-600 text-xl"></i>
</div>
<h4 class="font-semibold mb-2">Project Management</h4>
<p class="text-gray-500 text-sm">Leading projects from conception to completion.</p>
</div>
</div>
</div>
</div>
<div class="mt-16">
<h3 class="text-xl font-semibold mb-6 text-center">Tools & Technologies</h3>
<div class="flex flex-wrap justify-center gap-6">
<div class="w-16 h-16 bg-white rounded-full shadow-md flex items-center justify-center hover:shadow-lg transition duration-300">
<i class="fab fa-html5 text-orange-500 text-3xl"></i>
</div>
<div class="w-16 h-16 bg-white rounded-full shadow-md flex items-center justify-center hover:shadow-lg transition duration-300">
<i class="fab fa-css3-alt text-blue-500 text-3xl"></i>
</div>
<div class="w-16 h-16 bg-white rounded-full shadow-md flex items-center justify-center hover:shadow-lg transition duration-300">
<i class="fab fa-js text-yellow-500 text-3xl"></i>
</div>
<div class="w-16 h-16 bg-white rounded-full shadow-md flex items-center justify-center hover:shadow-lg transition duration-300">
<i class="fab fa-react text-blue-400 text-3xl"></i>
</div>
<div class="w-16 h-16 bg-white rounded-full shadow-md flex items-center justify-center hover:shadow-lg transition duration-300">
<i class="fab fa-node-js text-green-500 text-3xl"></i>
</div>
<div class="w-16 h-16 bg-white rounded-full shadow-md flex items-center justify-center hover:shadow-lg transition duration-300">
<i class="fab fa-git text-orange-600 text-3xl"></i>
</div>
<div class="w-16 h-16 bg-white rounded-full shadow-md flex items-center justify-center hover:shadow-lg transition duration-300">
<i class="fab fa-github text-gray-800 text-3xl"></i>
</div>
<div class="w-16 h-16 bg-white rounded-full shadow-md flex items-center justify-center hover:shadow-lg transition duration-300">
<i class="fab fa-aws text-orange-500 text-3xl"></i>
</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">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">My <span class="gradient-text">Projects</span></h2>
<div class="w-20 h-1 bg-gradient-to-r from-blue-500 to-indigo-600 mx-auto"></div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Project 1 -->
<div class="bg-white rounded-xl overflow-hidden shadow-lg card-hover">
<div class="h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Project 1" class="w-full h-full object-cover transition duration-500 hover:scale-110">
</div>
<div class="p-6">
<div class="flex justify-between items-start mb-3">
<h3 class="text-xl font-bold">E-commerce Platform</h3>
<div class="flex space-x-2">
<a href="#" class="text-blue-500 hover:text-blue-700">
<i class="fab fa-github"></i>
</a>
<a href="#" class="text-indigo-500 hover:text-indigo-700">
<i class="fas fa-external-link-alt"></i>
</a>
</div>
</div>
<p class="text-gray-600 mb-4">A full-featured online shopping platform with payment integration and inventory management.</p>
<div class="flex flex-wrap gap-2">
<span class="px-3 py-1 bg-blue-100 text-blue-800 text-xs font-medium rounded-full">React</span>
<span class="px-3 py-1 bg-indigo-100 text-indigo-800 text-xs font-medium rounded-full">Node.js</span>
<span class="px-3 py-1 bg-purple-100 text-purple-800 text-xs font-medium rounded-full">MongoDB</span>
</div>
</div>
</div>
<!-- Project 2 -->
<div class="bg-white rounded-xl overflow-hidden shadow-lg card-hover">
<div class="h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1555421689-3f034debb7a6?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Project 2" class="w-full h-full object-cover transition duration-500 hover:scale-110">
</div>
<div class="p-6">
<div class="flex justify-between items-start mb-3">
<h3 class="text-xl font-bold">Task Management App</h3>
<div class="flex space-x-2">
<a href="#" class="text-blue-500 hover:text-blue-700">
<i class="fab fa-github"></i>
</a>
<a href="#" class="text-indigo-500 hover:text-indigo-700">
<i class="fas fa-external-link-alt"></i>
</a>
</div>
</div>
<p class="text-gray-600 mb-4">A productivity application for teams to collaborate on projects and track progress.</p>
<div class="flex flex-wrap gap-2">
<span class="px-3 py-1 bg-blue-100 text-blue-800 text-xs font-medium rounded-full">Vue.js</span>
<span class="px-3 py-1 bg-green-100 text-green-800 text-xs font-medium rounded-full">Firebase</span>
<span class="px-3 py-1 bg-red-100 text-red-800 text-xs font-medium rounded-full">TailwindCSS</span>
</div>
</div>
</div>
<!-- Project 3 -->
<div class="bg-white rounded-xl overflow-hidden shadow-lg card-hover">
<div class="h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1522542550221-31fd19575a2d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Project 3" class="w-full h-full object-cover transition duration-500 hover:scale-110">
</div>
<div class="p-6">
<div class="flex justify-between items-start mb-3">
<h3 class="text-xl font-bold">AI Content Generator</h3>
<div class="flex space-x-2">
<a href="#" class="text-blue-500 hover:text-blue-700">
<i class="fab fa-github"></i>
</a>
<a href="#" class="text-indigo-500 hover:text-indigo-700">
<i class="fas fa-external-link-alt"></i>
</a>
</div>
</div>
<p class="text-gray-600 mb-4">An AI-powered tool that generates high-quality content for blogs and social media.</p>
<div class="flex flex-wrap gap-2">
<span class="px-3 py-1 bg-blue-100 text-blue-800 text-xs font-medium rounded-full">Python</span>
<span class="px-3 py-1 bg-yellow-100 text-yellow-800 text-xs font-medium rounded-full">TensorFlow</span>
<span class="px-3 py-1 bg-gray-100 text-gray-800 text-xs font-medium rounded-full">Flask</span>
</div>
</div>
</div>
<!-- Project 4 -->
<div class="bg-white rounded-xl overflow-hidden shadow-lg card-hover">
<div class="h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Project 4" class="w-full h-full object-cover transition duration-500 hover:scale-110">
</div>
<div class="p-6">
<div class="flex justify-between items-start mb-3">
<h3 class="text-xl font-bold">Collaboration Platform</h3>
<div class="flex space-x-2">
<a href="#" class="text-blue-500 hover:text-blue-700">
<i class="fab fa-github"></i>
</a>
<a href="#" class="text-indigo-500 hover:text-indigo-700">
<i class="fas fa-external-link-alt"></i>
</a>
</div>
</div>
<p class="text-gray-600 mb-4">A real-time collaboration tool for remote teams with video conferencing and file sharing.</p>
<div class="flex flex-wrap gap-2">
<span class="px-3 py-1 bg-blue-100 text-blue-800 text-xs font-medium rounded-full">React</span>
<span class="px-3 py-1 bg-indigo-100 text-indigo-800 text-xs font-medium rounded-full">WebRTC</span>
<span class="px-3 py-1 bg-purple-100 text-purple-800 text-xs font-medium rounded-full">Socket.io</span>
</div>
</div>
</div>
<!-- Project 5 -->
<div class="bg-white rounded-xl overflow-hidden shadow-lg card-hover">
<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=1470&q=80" alt="Project 5" class="w-full h-full object-cover transition duration-500 hover:scale-110">
</div>
<div class="p-6">
<div class="flex justify-between items-start mb-3">
<h3 class="text-xl font-bold">Fitness Tracker</h3>
<div class="flex space-x-2">
<a href="#" class="text-blue-500 hover:text-blue-700">
<i class="fab fa-github"></i>
</a>
<a href="#" class="text-indigo-500 hover:text-indigo-700">
<i class="fas fa-external-link-alt"></i>
</a>
</div>
</div>
<p class="text-gray-600 mb-4">A mobile and web application for tracking workouts, nutrition, and health metrics.</p>
<div class="flex flex-wrap gap-2">
<span class="px-3 py-1 bg-blue-100 text-blue-800 text-xs font-medium rounded-full">React Native</span>
<span class="px-3 py-1 bg-green-100 text-green-800 text-xs font-medium rounded-full">GraphQL</span>
<span class="px-3 py-1 bg-red-100 text-red-800 text-xs font-medium rounded-full">PostgreSQL</span>
</div>
</div>
</div>
<!-- Project 6 -->
<div class="bg-white rounded-xl overflow-hidden shadow-lg card-hover">
<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=1415&q=80" alt="Project 6" class="w-full h-full object-cover transition duration-500 hover:scale-110">
</div>
<div class="p-6">
<div class="flex justify-between items-start mb-3">
<h3 class="text-xl font-bold">Data Analytics Dashboard</h3>
<div class="flex space-x-2">
<a href="#" class="text-blue-500 hover:text-blue-700">
<i class="fab fa-github"></i>
</a>
<a href="#" class="text-indigo-500 hover:text-indigo-700">
<i class="fas fa-external-link-alt"></i>
</a>
</div>
</div>
<p class="text-gray-600 mb-4">Interactive dashboard for visualizing complex business data with custom reporting.</p>
<div class="flex flex-wrap gap-2">
<span class="px-3 py-1 bg-blue-100 text-blue-800 text-xs font-medium rounded-full">D3.js</span>
<span class="px-3 py-1 bg-indigo-100 text-indigo-800 text-xs font-medium rounded-full">TypeScript</span>
<span class="px-3 py-1 bg-purple-100 text-purple-800 text-xs font-medium rounded-full">Express</span>
</div>
</div>
</div>
</div>
<div class="text-center mt-12">
<a href="#" class="inline-flex items-center px-6 py-3 border border-transparent text-base font-medium rounded-md shadow-sm text-white bg-gradient-to-r from-blue-500 to-indigo-600 hover:from-blue-600 hover:to-indigo-700">
View All Projects
<i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-20 bg-gray-50">
<div class="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">Get In <span class="gradient-text">Touch</span></h2>
<div class="w-20 h-1 bg-gradient-to-r from-blue-500 to-indigo-600 mx-auto"></div>
</div>
<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-6">Contact Information</h3>
<p class="text-gray-600 mb-8">
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-6">
<div class="flex items-start">
<div class="mr-4 mt-1">
<div class="w-12 h-12 bg-blue-100 rounded-full flex items-center justify-center">
<i class="fas fa-map-marker-alt text-blue-600"></i>
</div>
</div>
<div>
<h4 class="font-semibold text-lg mb-1">Location</h4>
<p class="text-gray-600">San Francisco, CA</p>
</div>
</div>
<div class="flex items-start">
<div class="mr-4 mt-1">
<div class="w-12 h-12 bg-indigo-100 rounded-full flex items-center justify-center">
<i class="fas fa-envelope text-indigo-600"></i>
</div>
</div>
<div>
<h4 class="font-semibold text-lg mb-1">Email</h4>
<p class="text-gray-600">davidkrk@example.com</p>
</div>
</div>
<div class="flex items-start">
<div class="mr-4 mt-1">
<div class="w-12 h-12 bg-purple-100 rounded-full flex items-center justify-center">
<i class="fas fa-phone-alt text-purple-600"></i>
</div>
</div>
<div>
<h4 class="font-semibold text-lg mb-1">Phone</h4>
<p class="text-gray-600">+1 (555) 123-4567</p>
</div>
</div>
</div>
<div class="mt-8">
<h4 class="font-semibold text-lg mb-4">Follow Me</h4>
<div class="flex space-x-4">
<a href="#" class="w-10 h-10 bg-blue-100 rounded-full flex items-center justify-center hover:bg-blue-200 transition duration-300">
<i class="fab fa-github text-gray-800"></i>
</a>
<a href="#" class="w-10 h-10 bg-blue-100 rounded-full flex items-center justify-center hover:bg-blue-200 transition duration-300">
<i class="fab fa-linkedin-in text-blue-700"></i>
</a>
<a href="#" class="w-10 h-10 bg-blue-100 rounded-full flex items-center justify-center hover:bg-blue-200 transition duration-300">
<i class="fab fa-twitter text-blue-400"></i>
</a>
<a href="#" class="w-10 h-10 bg-blue-100 rounded-full flex items-center justify-center hover:bg-blue-200 transition duration-300">
<i class="fab fa-instagram text-pink-600"></i>
</a>
</div>
</div>
</div>
<div class="md:w-1/2">
<form class="bg-white p-8 rounded-xl shadow-md">
<div class="mb-6">
<label for="name" class="block text-gray-700 font-medium mb-2">Your Name</label>
<input type="text" id="name" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500 outline-none transition duration-300" placeholder="John Doe">
</div>
<div class="mb-6">
<label for="email" class="block text-gray-700 font-medium mb-2">Your Email</label>
<input type="email" id="email" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500 outline-none transition duration-300" placeholder="john@example.com">
</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:ring-2 focus:ring-blue-500 focus:border-blue-500 outline-none transition duration-300" placeholder="Project Inquiry">
</div>
<div class="mb-6">
<label for="message" class="block text-gray-700 font-medium mb-2">Your Message</label>
<textarea id="message" rows="5" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500 outline-none transition duration-300" placeholder="Hello, I would like to talk about..."></textarea>
</div>
<button type="submit" class="w-full px-6 py-3 bg-gradient-to-r from-blue-500 to-indigo-600 text-white font-medium rounded-lg shadow-md hover:from-blue-600 hover:to-indigo-700 transition duration-300">
Send Message
<i class="fas fa-paper-plane ml-2"></i>
</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">
<a href="#" class="text-xl font-bold gradient-text">David KRK</a>
<p class="text-gray-400 mt-2">Full Stack Developer</p>
</div>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-white transition duration-300">
<i class="fab fa-github text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition duration-300">
<i class="fab fa-linkedin-in text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition duration-300">
<i class="fab fa-twitter text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition duration-300">
<i class="fab fa-instagram text-xl"></i>
</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 text-sm mb-4 md:mb-0">
&copy; 2023 David KRK. All rights reserved.
</p>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-white text-sm transition duration-300">Privacy Policy</a>
<a href="#" class="text-gray-400 hover:text-white text-sm transition duration-300">Terms of Service</a>
<a href="#" class="text-gray-400 hover:text-white text-sm transition duration-300">Sitemap</a>
</div>
</div>
</div>
</footer>
<!-- Back to Top Button -->
<button id="back-to-top" class="fixed bottom-8 right-8 w-12 h-12 bg-gradient-to-r from-blue-500 to-indigo-600 text-white rounded-full shadow-lg flex items-center justify-center opacity-0 invisible transition-all duration-300">
<i class="fas fa-arrow-up"></i>
</button>
<script>
// Mobile menu toggle
const menuBtn = document.getElementById('menu-btn');
const mobileMenu = document.getElementById('mobile-menu');
menuBtn.addEventListener('click', () => {
mobileMenu.classList.toggle('hidden');
});
// Close mobile menu when clicking on a link
const mobileLinks = document.querySelectorAll('#mobile-menu a');
mobileLinks.forEach(link => {
link.addEventListener('click', () => {
mobileMenu.classList.add('hidden');
});
});
// Back to top button
const backToTopBtn = document.getElementById('back-to-top');
window.addEventListener('scroll', () => {
if (window.pageYOffset > 300) {
backToTopBtn.classList.remove('opacity-0', 'invisible');
backToTopBtn.classList.add('opacity-100', 'visible');
} else {
backToTopBtn.classList.remove('opacity-100', 'visible');
backToTopBtn.classList.add('opacity-0', 'invisible');
}
});
backToTopBtn.addEventListener('click', () => {
window.scrollTo({
top: 0,
behavior: 'smooth'
});
});
// Smooth scrolling for navigation links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function(e) {
e.preventDefault();
const targetId = this.getAttribute('href');
const targetElement = document.querySelector(targetId);
if (targetElement) {
window.scrollTo({
top: targetElement.offsetTop - 80,
behavior: 'smooth'
});
}
});
});
// Form submission
const contactForm = document.querySelector('form');
if (contactForm) {
contactForm.addEventListener('submit', function(e) {
e.preventDefault();
// Get form values
const name = document.getElementById('name').value;
const email = document.getElementById('email').value;
const subject = document.getElementById('subject').value;
const message = document.getElementById('message').value;
// Here you would typically send the form data to a server
console.log('Form submitted:', { name, email, subject, message });
// Show success message
alert('Thank you for your message! I will get back to you soon.');
// Reset form
contactForm.reset();
});
}
</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=DavidKRK/https-huggingface-co-spaces-davidkrk-https-huggingface-co-davidkrk" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>