File size: 24,421 Bytes
cf5e1b1 5b88ac5 cf5e1b1 5b88ac5 cf5e1b1 5b88ac5 cf5e1b1 5b88ac5 cf5e1b1 5b88ac5 cf5e1b1 5b88ac5 cf5e1b1 5b88ac5 cf5e1b1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Deniz Efe Karacakaya | Personal Website</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-bg {
background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
}
.text-gradient {
background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.card-hover:hover {
transform: translateY(-10px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.timeline-item:not(:last-child)::after {
content: '';
position: absolute;
left: 50%;
bottom: -20px;
transform: translateX(-50%);
width: 2px;
height: 20px;
background-color: #e5e7eb;
}
@keyframes float {
0% { transform: translateY(0px); }
50% { transform: translateY(-10px); }
100% { transform: translateY(0px); }
}
.floating {
animation: float 3s ease-in-out infinite;
}
</style>
</head>
<body class="bg-gray-50">
<!-- Navigation -->
<nav class="fixed w-full bg-white shadow-md 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="#" class="text-xl font-bold text-gradient">DEK</a>
</div>
<div class="hidden md:flex items-center space-x-8">
<a href="#home" class="text-gray-700 hover:text-indigo-600 transition">Home</a>
<a href="#about" class="text-gray-700 hover:text-indigo-600 transition">About</a>
<a href="#experience" class="text-gray-700 hover:text-indigo-600 transition">Experience</a>
<a href="#projects" class="text-gray-700 hover:text-indigo-600 transition">Projects</a>
<a href="#contact" class="text-gray-700 hover:text-indigo-600 transition">Contact</a>
</div>
<div class="md:hidden flex items-center">
<button id="menu-btn" class="text-gray-700">
<i class="fas fa-bars text-xl"></i>
</button>
</div>
</div>
</div>
<!-- Mobile menu -->
<div id="mobile-menu" class="hidden md:hidden bg-white py-4 px-4 shadow-lg">
<div class="flex flex-col space-y-4">
<a href="#home" class="text-gray-700 hover:text-blue-600 transition">Home</a>
<a href="#about" class="text-gray-700 hover:text-blue-600 transition">About</a>
<a href="#experience" class="text-gray-700 hover:text-blue-600 transition">Experience</a>
<a href="#projects" class="text-gray-700 hover:text-blue-600 transition">Projects</a>
<a href="#contact" class="text-gray-700 hover:text-blue-600 transition">Contact</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="pt-24 pb-16 md:pt-32 md:pb-24 gradient-bg text-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0">
<h1 class="text-4xl md:text-5xl font-bold mb-4">Deniz Efe Karacakaya</h1>
<h2 class="text-2xl md:text-3xl font-semibold mb-6">AI & Data Engineering Student</h2>
<p class="text-lg mb-8">Building innovative solutions and pushing the boundaries of technology.</p>
<div class="flex space-x-4">
<a href="#contact" class="bg-white text-indigo-600 px-6 py-3 rounded-lg font-medium hover:bg-gray-100 transition">Contact Me</a>
<a href="#projects" class="border-2 border-white text-white px-6 py-3 rounded-lg font-medium hover:bg-white hover:text-indigo-600 transition">View Projects</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-white bg-opacity-20 flex items-center justify-center floating">
<img src="https://media.licdn.com/dms/image/D4D03AQG6YzY2YJ8X5Q/profile-displayphoto-shrink_400_400/0/1700211401171?e=1717027200&v=beta&t=7v5Yh8QYQ3Z3wQ7W5Q3Q3Q3Q3Q3Q3Q3Q3Q3Q3Q3Q3Q"
alt="Deniz Efe Karacakaya"
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 text-blue-600 px-4 py-2 rounded-full shadow-lg">
<span class="font-bold">Open to Work</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-16 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-12 text-gradient">About Me</h2>
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/3 mb-8 md:mb-0 flex justify-center">
<img src="file:///C:/Users/deniz/Desktop/WhatsApp%20G%C3%B6rsel%202025-07-08%20saat%2014.46.19_c84fa0a3.jpg"
alt="Deniz Efe Karacakaya"
class="w-48 h-48 rounded-full object-cover border-4 border-blue-100">
</div>
<div class="md:w-2/3 md:pl-12">
<p class="text-lg text-gray-700 mb-6">
I am Deniz Efe Karacakaya, a passionate Artificial Intelligence and Data Engineering student at Akdeniz University.
I have a strong interest in machine learning, deep learning, and data analysis, with hands-on experience in various AI projects.
</p>
<p class="text-lg text-gray-700 mb-6">
My technical skills span across programming languages and frameworks used in AI development and data engineering.
I'm constantly expanding my knowledge in these fields through academic studies and personal projects.
</p>
<div class="mb-8">
<h3 class="text-xl font-semibold mb-4 text-gray-800">Skills & Technologies</h3>
<div class="flex flex-wrap gap-3">
<span class="bg-indigo-100 text-indigo-800 px-3 py-1 rounded-full">Python</span>
<span class="bg-indigo-100 text-indigo-800 px-3 py-1 rounded-full">TensorFlow</span>
<span class="bg-indigo-100 text-indigo-800 px-3 py-1 rounded-full">PyTorch</span>
<span class="bg-indigo-100 text-indigo-800 px-3 py-1 rounded-full">Scikit-learn</span>
<span class="bg-indigo-100 text-indigo-800 px-3 py-1 rounded-full">Pandas</span>
<span class="bg-indigo-100 text-indigo-800 px-3 py-1 rounded-full">NumPy</span>
<span class="bg-indigo-100 text-indigo-800 px-3 py-1 rounded-full">SQL</span>
<span class="bg-indigo-100 text-indigo-800 px-3 py-1 rounded-full">Data Analysis</span>
<span class="bg-indigo-100 text-indigo-800 px-3 py-1 rounded-full">Machine Learning</span>
<span class="bg-indigo-100 text-indigo-800 px-3 py-1 rounded-full">Deep Learning</span>
<span class="bg-indigo-100 text-indigo-800 px-3 py-1 rounded-full">Git</span>
</div>
</div>
<div class="flex space-x-4">
<a href="https://www.linkedin.com/in/deniz-efe-karacakaya-44858531b" target="_blank" class="text-blue-600 hover:text-blue-800">
<i class="fab fa-linkedin text-2xl"></i>
</a>
<a href="https://github.com/Denizfe" target="_blank" class="text-gray-800 hover:text-black">
<i class="fab fa-github text-2xl"></i>
</a>
<a href="https://huggingface.co/Denizfe" target="_blank" class="text-yellow-600 hover:text-yellow-800">
<i class="fab fa-huggingface text-2xl"></i>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- Experience Section -->
<section id="experience" class="py-16 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-12 text-gradient">My Journey</h2>
<div class="relative">
<!-- Timeline -->
<div class="space-y-8 md:space-y-0">
<!-- Timeline Item 3 -->
<div class="relative timeline-item">
<div class="md:flex">
<div class="md:w-1/2 md:pr-8 md:text-right mb-4 md:mb-0">
<div class="bg-white p-6 rounded-lg shadow-md card-hover transition duration-300">
<h3 class="text-xl font-bold text-blue-600 mb-2">Artificial Intelligence and Data Engineering</h3>
<p class="text-gray-600 mb-2">Akdeniz University</p>
<p class="text-gray-500">2024 - Present</p>
</div>
</div>
<div class="hidden md:block md:w-1/2"></div>
</div>
</div>
<!-- Timeline Item 4 -->
<div class="relative">
<div class="md:flex">
<div class="hidden md:block md:w-1/2"></div>
<div class="md:w-1/2 md:pl-8">
<div class="bg-white p-6 rounded-lg shadow-md card-hover transition duration-300">
<h3 class="text-xl font-bold text-blue-600 mb-2">High School Diploma</h3>
<p class="text-gray-600 mb-2">Adem Tolunay Anatolian High School</p>
<p class="text-gray-500">2020 - 2024</p>
</div>
</div>
</div>
</div>
</div>
<!-- Timeline line -->
<div class="hidden md:block absolute left-1/2 top-0 bottom-0 w-1 bg-blue-200 transform -translate-x-1/2"></div>
</div>
</div>
</section>
<!-- Projects Section -->
<section id="projects" class="py-16 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-12 text-gradient">Featured Projects</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Project 1 -->
<div class="bg-gray-50 rounded-lg overflow-hidden shadow-md card-hover transition duration-300">
<img src="https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=60"
alt="Project 1" class="w-full h-48 object-cover">
<div class="p-6">
<h3 class="text-xl font-bold mb-2 text-gray-800">E-commerce Platform</h3>
<p class="text-gray-600 mb-4">A full-stack e-commerce solution with payment integration and inventory management.</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="bg-indigo-100 text-indigo-800 px-2 py-1 rounded text-sm">React</span>
<span class="bg-indigo-100 text-indigo-800 px-2 py-1 rounded text-sm">Node.js</span>
<span class="bg-indigo-100 text-indigo-800 px-2 py-1 rounded text-sm">MongoDB</span>
</div>
<a href="#" class="text-blue-600 font-medium hover:text-blue-800">View Project →</a>
</div>
</div>
<!-- Project 2 -->
<div class="bg-gray-50 rounded-lg overflow-hidden shadow-md card-hover transition duration-300">
<img src="https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=60"
alt="Project 2" class="w-full h-48 object-cover">
<div class="p-6">
<h3 class="text-xl font-bold mb-2 text-gray-800">Task Management App</h3>
<p class="text-gray-600 mb-4">A productivity application for teams to collaborate and manage projects efficiently.</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="bg-blue-100 text-blue-800 px-2 py-1 rounded text-sm">Vue.js</span>
<span class="bg-blue-100 text-blue-800 px-2 py-1 rounded text-sm">Firebase</span>
<span class="bg-blue-100 text-blue-800 px-2 py-1 rounded text-sm">TailwindCSS</span>
</div>
<a href="#" class="text-blue-600 font-medium hover:text-blue-800">View Project →</a>
</div>
</div>
<!-- Project 3 -->
<div class="bg-gray-50 rounded-lg overflow-hidden shadow-md card-hover transition duration-300">
<img src="https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=60"
alt="Project 3" class="w-full h-48 object-cover">
<div class="p-6">
<h3 class="text-xl font-bold mb-2 text-gray-800">AI Chatbot</h3>
<p class="text-gray-600 mb-4">A conversational AI assistant built with natural language processing capabilities.</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="bg-blue-100 text-blue-800 px-2 py-1 rounded text-sm">Python</span>
<span class="bg-blue-100 text-blue-800 px-2 py-1 rounded text-sm">TensorFlow</span>
<span class="bg-blue-100 text-blue-800 px-2 py-1 rounded text-sm">NLP</span>
</div>
<a href="#" class="text-blue-600 font-medium hover:text-blue-800">View Project →</a>
</div>
</div>
</div>
<div class="text-center mt-12">
<a href="#" class="inline-block bg-blue-600 text-white px-6 py-3 rounded-lg font-medium hover:bg-blue-700 transition">
View All Projects
</a>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-16 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-12 text-gradient">Get In Touch</h2>
<div class="flex flex-col md:flex-row">
<div class="md:w-1/2 mb-8 md:mb-0 md:pr-8">
<h3 class="text-2xl font-semibold mb-4 text-gray-800">Let's Connect</h3>
<p class="text-gray-600 mb-6">
I'm always open to discussing new projects, creative ideas or opportunities to be part of your vision.
</p>
<div class="space-y-4">
<div class="flex items-center">
<div class="bg-indigo-100 p-3 rounded-full mr-4">
<i class="fas fa-envelope text-indigo-600"></i>
</div>
<div>
<p class="text-gray-500">Email</p>
<a href="mailto:denizefekaracakaya14@gmail.com" class="font-medium hover:text-indigo-600">denizefekaracakaya14@gmail.com</a>
</div>
</div>
<div class="flex items-center">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-phone text-blue-600"></i>
</div>
<div>
<p class="text-gray-500">Phone</p>
<p class="font-medium">+90 555 123 4567</p>
</div>
</div>
<div class="flex items-center">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-map-marker-alt text-blue-600"></i>
</div>
<div>
<p class="text-gray-500">Location</p>
<p class="font-medium">Antalya, Türkiye</p>
</div>
</div>
<div class="flex items-center">
<div class="bg-orange-100 p-3 rounded-full mr-4">
<i class="fab fa-kaggle text-orange-600"></i>
</div>
<div>
<p class="text-gray-500">Kaggle</p>
<a href="https://www.kaggle.com/denizefekaracakaya" target="_blank" class="font-medium hover:text-orange-600">denizefekaracakaya</a>
</div>
</div>
</div>
</div>
<div class="md:w-1/2">
<form class="bg-white p-6 rounded-lg shadow-md">
<div class="mb-4">
<label for="name" class="block text-gray-700 mb-2">Name</label>
<input type="text" id="name" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500">
</div>
<div class="mb-4">
<label for="email" class="block text-gray-700 mb-2">Email</label>
<input type="email" id="email" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500">
</div>
<div class="mb-4">
<label for="subject" class="block text-gray-700 mb-2">Subject</label>
<input type="text" id="subject" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500">
</div>
<div class="mb-4">
<label for="message" class="block text-gray-700 mb-2">Message</label>
<textarea id="message" rows="4" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500"></textarea>
</div>
<button type="submit" class="w-full bg-indigo-600 text-white py-3 rounded-lg font-medium hover:bg-indigo-700 transition">
Send Message
</button>
</form>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-800 text-white py-8">
<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-4 md:mb-0">
<a href="#" class="text-xl font-bold">Deniz Efe Karacakaya</a>
<p class="text-gray-400 mt-1">Software Developer & Tech Enthusiast</p>
</div>
<div class="flex space-x-6">
<a href="https://www.linkedin.com/in/deniz-efe-karacakaya-44858531b" target="_blank" class="text-gray-400 hover:text-white transition">
<i class="fab fa-linkedin text-xl"></i>
</a>
<a href="https://github.com/Denizfe" target="_blank" class="text-gray-400 hover:text-white transition">
<i class="fab fa-github text-xl"></i>
</a>
<a href="https://huggingface.co/Denizfe" target="_blank" class="text-gray-400 hover:text-white transition">
<i class="fab fa-huggingface text-xl"></i>
</a>
</div>
</div>
<div class="border-t border-gray-700 mt-8 pt-8 text-center text-gray-400">
<p>© 2023 Deniz Efe Karacakaya. All rights reserved.</p>
</div>
</div>
</footer>
<script>
// Mobile menu toggle
const menuBtn = document.getElementById('menu-btn');
const mobileMenu = document.getElementById('mobile-menu');
menuBtn.addEventListener('click', () => {
mobileMenu.classList.toggle('hidden');
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
mobileMenu.classList.add('hidden');
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
// Add shadow to navbar on scroll
window.addEventListener('scroll', function() {
const nav = document.querySelector('nav');
if (window.scrollY > 10) {
nav.classList.add('shadow-lg');
} else {
nav.classList.remove('shadow-lg');
}
});
</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=Denizfe/mywebsite" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |