Spaces:
Running
Running
File size: 41,391 Bytes
5a11e76 |
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 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 |
<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dr. Murat Altun - Yapay Zeka Uzmanı ve Eğitmeni</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>
.hero-gradient {
background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #ec4899 100%);
}
.card-hover: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);
}
.timeline-item:not(:last-child):after {
content: '';
position: absolute;
left: 7px;
top: 24px;
height: calc(100% - 24px);
width: 2px;
background: #e5e7eb;
}
.nav-link {
position: relative;
}
.nav-link:after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: 0;
left: 0;
background-color: #3b82f6;
transition: width 0.3s ease;
}
.nav-link:hover:after {
width: 100%;
}
.active:after {
width: 100%;
}
</style>
</head>
<body class="font-sans bg-gray-50 text-gray-800">
<!-- 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">
<span class="text-xl font-bold text-blue-600">Dr. Murat Altun</span>
</div>
<div class="hidden md:flex items-center space-x-8">
<a href="#home" class="nav-link active px-3 py-2 text-sm font-medium">Ana Sayfa</a>
<a href="#about" class="nav-link px-3 py-2 text-sm font-medium">Hakkında</a>
<a href="#expertise" class="nav-link px-3 py-2 text-sm font-medium">Uzmanlık</a>
<a href="#projects" class="nav-link px-3 py-2 text-sm font-medium">Projeler</a>
<a href="#publications" class="nav-link px-3 py-2 text-sm font-medium">Yayınlar</a>
<a href="#contact" class="nav-link px-3 py-2 text-sm font-medium">İletişim</a>
</div>
<div class="md:hidden flex items-center">
<button id="mobile-menu-button" class="text-gray-500 hover:text-gray-900">
<i class="fas fa-bars text-xl"></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:bg-gray-100">Ana Sayfa</a>
<a href="#about" class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:bg-gray-100">Hakkında</a>
<a href="#expertise" class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:bg-gray-100">Uzmanlık</a>
<a href="#projects" class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:bg-gray-100">Projeler</a>
<a href="#publications" class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:bg-gray-100">Yayınlar</a>
<a href="#contact" class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:bg-gray-100">İletişim</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="hero-gradient pt-24 pb-16 md:pt-32 md:pb-24 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-8 md:mb-0">
<h1 class="text-4xl md:text-5xl font-bold mb-4">Dr. Murat Altun</h1>
<h2 class="text-2xl md:text-3xl font-semibold mb-6">Yapay Zeka Uzmanı, Eğitmen ve Yazar</h2>
<p class="text-lg mb-8 opacity-90">Türkiye'de yapay zeka teknolojilerinin eğitim ve sektörlerde uygulanmasına öncülük eden bir isim.</p>
<div class="flex space-x-4">
<a href="#contact" class="bg-white text-blue-600 hover:bg-gray-100 px-6 py-3 rounded-lg font-medium transition duration-300">İletişime Geç</a>
<a href="#projects" class="border border-white text-white hover:bg-white hover:text-blue-600 px-6 py-3 rounded-lg font-medium transition duration-300">Projeleri Gör</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">
<div class="w-56 h-56 md:w-72 md:h-72 rounded-full bg-white bg-opacity-30 flex items-center justify-center">
<div class="w-48 h-48 md:w-64 md:h-64 rounded-full bg-white overflow-hidden shadow-xl">
<img src="https://altunmurat.wordpress.com/wp-content/uploads/2019/09/fotovesikalc4b1k2.png" alt="Dr. Murat Altun" class="w-full h-full object-cover">
</div>
</div>
</div>
<div class="absolute -bottom-6 left-0 right-0 flex justify-center space-x-4">
<a href="#" class="bg-white text-blue-600 p-3 rounded-full shadow-lg hover:bg-gray-100 transition duration-300">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="#" class="bg-white text-blue-600 p-3 rounded-full shadow-lg hover:bg-gray-100 transition duration-300">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="bg-white text-blue-600 p-3 rounded-full shadow-lg hover:bg-gray-100 transition duration-300">
<i class="fab fa-github"></i>
</a>
<a href="#" class="bg-white text-blue-600 p-3 rounded-full shadow-lg hover:bg-gray-100 transition duration-300">
<i class="fab fa-researchgate"></i>
</a>
</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">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold text-gray-900 mb-4">Hakkında</h2>
<div class="w-20 h-1 bg-blue-600 mx-auto"></div>
</div>
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-8 md:mb-0 md:pr-8">
<h3 class="text-2xl font-semibold mb-4">Yapay Zeka Alanında Öncü Bir İsim</h3>
<p class="text-gray-600 mb-4">Dr. Murat Altun, yapay zeka alanında çalışmalarıyla tanınan, Türkiye'de bu teknolojinin eğitim ve çeşitli sektörlerde uygulanmasına öncülük eden bir isimdir.</p>
<p class="text-gray-600 mb-6">Kendisi, yapay zeka eğitmeni, danışman ve yazar olarak faaliyet göstermektedir. Eğitimde yapay zeka uygulamalarının yaygınlaştırılması için çeşitli projeler yürütmekte ve bu alanda eğitimler vermektedir.</p>
<div class="flex flex-wrap gap-4">
<div class="bg-blue-50 text-blue-800 px-4 py-2 rounded-full text-sm font-medium">
<i class="fas fa-graduation-cap mr-2"></i>Akademisyen
</div>
<div class="bg-purple-50 text-purple-800 px-4 py-2 rounded-full text-sm font-medium">
<i class="fas fa-chalkboard-teacher mr-2"></i>Eğitmen
</div>
<div class="bg-pink-50 text-pink-800 px-4 py-2 rounded-full text-sm font-medium">
<i class="fas fa-book mr-2"></i>Yazar
</div>
<div class="bg-indigo-50 text-indigo-800 px-4 py-2 rounded-full text-sm font-medium">
<i class="fas fa-lightbulb mr-2"></i>Danışman
</div>
</div>
</div>
<div class="md:w-1/2">
<div class="bg-gray-50 p-6 rounded-xl">
<h4 class="text-xl font-semibold mb-4">Eğitim Geçmişi</h4>
<div class="space-y-6">
<div class="flex items-start">
<div class="flex-shrink-0 bg-blue-100 rounded-full p-2 mr-4">
<i class="fas fa-university text-blue-600"></i>
</div>
<div>
<h5 class="font-medium text-gray-900">Doktora - Yapay Zeka ve Veri Mühendisliği</h5>
<p class="text-gray-600">Akdeniz Üniversitesi Mühendislik Fakültesi</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 bg-purple-100 rounded-full p-2 mr-4">
<i class="fas fa-graduation-cap text-purple-600"></i>
</div>
<div>
<h5 class="font-medium text-gray-900">Yüksek Lisans - Bilgisayar Mühendisliği</h5>
<p class="text-gray-600">Akdeniz Üniversitesi</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 bg-green-100 rounded-full p-2 mr-4">
<i class="fas fa-user-graduate text-green-600"></i>
</div>
<div>
<h5 class="font-medium text-gray-900">Lisans - Bilgisayar Mühendisliği</h5>
<p class="text-gray-600">Akdeniz Üniversitesi</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Expertise Section -->
<section id="expertise" class="py-16 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold text-gray-900 mb-4">Uzmanlık Alanları</h2>
<div class="w-20 h-1 bg-blue-600 mx-auto"></div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6">
<div class="bg-white p-6 rounded-xl shadow-sm hover:shadow-md transition duration-300 card-hover">
<div class="bg-blue-100 w-12 h-12 rounded-full flex items-center justify-center mb-4">
<i class="fas fa-brain text-blue-600 text-xl"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Yapay Zeka</h3>
<p class="text-gray-600">Derin öğrenme, doğal dil işleme, görüntü işleme gibi yapay zeka teknolojileri üzerine uzmanlık.</p>
</div>
<div class="bg-white p-6 rounded-xl shadow-sm hover:shadow-md transition duration-300 card-hover">
<div class="bg-purple-100 w-12 h-12 rounded-full flex items-center justify-center mb-4">
<i class="fas fa-database text-purple-600 text-xl"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Veri Analizi</h3>
<p class="text-gray-600">Büyük veri analizi, veri görselleştirme ve veri madenciliği teknikleri konusunda uzmanlık.</p>
</div>
<div class="bg-white p-6 rounded-xl shadow-sm hover:shadow-md transition duration-300 card-hover">
<div class="bg-green-100 w-12 h-12 rounded-full flex items-center justify-center mb-4">
<i class="fab fa-python text-green-600 text-xl"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Python Programlama</h3>
<p class="text-gray-600">Python ile yapay zeka, veri bilimi ve makine öğrenmesi uygulamaları geliştirme.</p>
</div>
<div class="bg-white p-6 rounded-xl shadow-sm hover:shadow-md transition duration-300 card-hover">
<div class="bg-yellow-100 w-12 h-12 rounded-full flex items-center justify-center mb-4">
<i class="fas fa-chalkboard-teacher text-yellow-600 text-xl"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Eğitim Teknolojileri</h3>
<p class="text-gray-600">Eğitimde yapay zeka uygulamaları ve dijital dönüşüm süreçleri konusunda uzmanlık.</p>
</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">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold text-gray-900 mb-4">Projeler ve Çalışmalar</h2>
<div class="w-20 h-1 bg-blue-600 mx-auto"></div>
</div>
<div class="grid grid-cols-1 lg:grid-cols-2 gap-8">
<!-- Project 1 -->
<div class="bg-gray-50 rounded-xl overflow-hidden shadow-sm hover:shadow-md transition duration-300 card-hover">
<div class="h-48 bg-gradient-to-r from-blue-500 to-purple-600 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">FEYZA Projesi</h3>
<p class="text-gray-600 mb-4">Milli Eğitim Bakanlığı tarafından yürütülen ve eğitimde yapay zeka kullanımını yaygınlaştırmayı amaçlayan proje.</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="bg-blue-100 text-blue-800 text-xs px-3 py-1 rounded-full">Yapay Zeka</span>
<span class="bg-purple-100 text-purple-800 text-xs px-3 py-1 rounded-full">Eğitim</span>
<span class="bg-green-100 text-green-800 text-xs px-3 py-1 rounded-full">MEB</span>
</div>
<a href="#" class="text-blue-600 font-medium inline-flex items-center">
Daha fazla bilgi <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
<!-- Project 2 -->
<div class="bg-gray-50 rounded-xl overflow-hidden shadow-sm hover:shadow-md transition duration-300 card-hover">
<div class="h-48 bg-gradient-to-r from-purple-500 to-pink-600 flex items-center justify-center">
<i class="fas fa-school text-white text-6xl"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-semibold mb-2">Yapay Zeka Okulum</h3>
<p class="text-gray-600 mb-4">Öğretmenlere yönelik yapay zeka destekli içerik üretimi, planlama ve raporlama araçları sunan platform.</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="bg-blue-100 text-blue-800 text-xs px-3 py-1 rounded-full">Platform</span>
<span class="bg-pink-100 text-pink-800 text-xs px-3 py-1 rounded-full">Eğitim</span>
<span class="bg-indigo-100 text-indigo-800 text-xs px-3 py-1 rounded-full">Yapay Zeka</span>
</div>
<a href="#" class="text-blue-600 font-medium inline-flex items-center">
Platformu ziyaret et <i class="fas fa-external-link-alt ml-2"></i>
</a>
</div>
</div>
<!-- Project 3 -->
<div class="bg-gray-50 rounded-xl overflow-hidden shadow-sm hover:shadow-md transition duration-300 card-hover">
<div class="h-48 bg-gradient-to-r from-green-500 to-teal-600 flex items-center justify-center">
<i class="fas fa-laptop-code text-white text-6xl"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-semibold mb-2">BTK Akademi İş Birliği</h3>
<p class="text-gray-600 mb-4">Bilgi Teknolojileri ve İletişim Kurumu (BTK) Akademi iş birliğiyle düzenlenen eğitimler ve atölye çalışmaları.</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="bg-green-100 text-green-800 text-xs px-3 py-1 rounded-full">Eğitim</span>
<span class="bg-teal-100 text-teal-800 text-xs px-3 py-1 rounded-full">Atölye</span>
<span class="bg-blue-100 text-blue-800 text-xs px-3 py-1 rounded-full">BTK</span>
</div>
<a href="#" class="text-blue-600 font-medium inline-flex items-center">
Detaylar <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
<!-- Project 4 -->
<div class="bg-gray-50 rounded-xl overflow-hidden shadow-sm hover:shadow-md transition duration-300 card-hover">
<div class="h-48 bg-gradient-to-r from-red-500 to-orange-600 flex items-center justify-center">
<i class="fas fa-users text-white text-6xl"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-semibold mb-2">Türkiye Yapay Zeka Öğretmen Grubu</h3>
<p class="text-gray-600 mb-4">Yapay zeka alanında çalışan öğretmenlerin bilgi ve deneyimlerini paylaştığı topluluk.</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="bg-red-100 text-red-800 text-xs px-3 py-1 rounded-full">Topluluk</span>
<span class="bg-orange-100 text-orange-800 text-xs px-3 py-1 rounded-full">Eğitim</span>
<span class="bg-purple-100 text-purple-800 text-xs px-3 py-1 rounded-full">Paylaşım</span>
</div>
<a href="#" class="text-blue-600 font-medium inline-flex items-center">
Katıl <i class="fas fa-user-plus ml-2"></i>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- Publications Section -->
<section id="publications" class="py-16 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold text-gray-900 mb-4">Yayınlar ve Eserler</h2>
<div class="w-20 h-1 bg-blue-600 mx-auto"></div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<!-- Book -->
<div class="bg-white p-6 rounded-xl shadow-sm hover:shadow-md transition duration-300 card-hover">
<div class="flex items-start">
<div class="flex-shrink-0 bg-blue-100 rounded-lg w-24 h-32 flex items-center justify-center mr-6">
<i class="fas fa-book text-blue-600 text-3xl"></i>
</div>
<div>
<h3 class="text-xl font-semibold mb-2">Yapay Zeka Uygulamaları</h3>
<p class="text-gray-600 mb-3">Ortaokul ve lise öğretmenleri için yapay zeka uygulamalarını anlatan bir el kitabı.</p>
<div class="flex items-center text-sm text-gray-500">
<i class="fas fa-calendar-alt mr-2"></i>
<span>2023</span>
</div>
<a href="#" class="mt-4 inline-flex items-center text-blue-600 font-medium">
Kitabı incele <i class="fas fa-external-link-alt ml-2"></i>
</a>
</div>
</div>
</div>
<!-- Academic Papers -->
<div class="bg-white p-6 rounded-xl shadow-sm hover:shadow-md transition duration-300 card-hover">
<div class="flex items-start">
<div class="flex-shrink-0 bg-purple-100 rounded-lg w-24 h-32 flex items-center justify-center mr-6">
<i class="fas fa-file-alt text-purple-600 text-3xl"></i>
</div>
<div>
<h3 class="text-xl font-semibold mb-2">Akademik Makaleler</h3>
<p class="text-gray-600 mb-3">Yapay zeka, makine öğrenmesi ve eğitim teknolojileri üzerine akademik yayınlar.</p>
<div class="flex items-center text-sm text-gray-500">
<i class="fas fa-university mr-2"></i>
<span>ResearchGate, Akademik Dergiler</span>
</div>
<a href="#" class="mt-4 inline-flex items-center text-blue-600 font-medium">
Makaleleri gör <i class="fas fa-external-link-alt ml-2"></i>
</a>
</div>
</div>
</div>
<!-- Blog -->
<div class="bg-white p-6 rounded-xl shadow-sm hover:shadow-md transition duration-300 card-hover">
<div class="flex items-start">
<div class="flex-shrink-0 bg-green-100 rounded-lg w-24 h-32 flex items-center justify-center mr-6">
<i class="fas fa-blog text-green-600 text-3xl"></i>
</div>
<div>
<h3 class="text-xl font-semibold mb-2">Kişisel Blog</h3>
<p class="text-gray-600 mb-3">Yapay zeka, veri bilimi ve eğitim teknolojileri üzerine güncel yazılar ve paylaşımlar.</p>
<div class="flex items-center text-sm text-gray-500">
<i class="fas fa-globe mr-2"></i>
<span>www.murataltun.com/blog</span>
</div>
<a href="#" class="mt-4 inline-flex items-center text-blue-600 font-medium">
Blogu ziyaret et <i class="fas fa-external-link-alt ml-2"></i>
</a>
</div>
</div>
</div>
<!-- GitHub -->
<div class="bg-white p-6 rounded-xl shadow-sm hover:shadow-md transition duration-300 card-hover">
<div class="flex items-start">
<div class="flex-shrink-0 bg-gray-100 rounded-lg w-24 h-32 flex items-center justify-center mr-6">
<i class="fab fa-github text-gray-600 text-3xl"></i>
</div>
<div>
<h3 class="text-xl font-semibold mb-2">GitHub Projeleri</h3>
<p class="text-gray-600 mb-3">Açık kaynak kodlu yapay zeka ve veri bilimi projeleri.</p>
<div class="flex items-center text-sm text-gray-500">
<i class="fab fa-github mr-2"></i>
<span>github.com/murataltun</span>
</div>
<a href="#" class="mt-4 inline-flex items-center text-blue-600 font-medium">
Profili görüntüle <i class="fas fa-external-link-alt ml-2"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Timeline Section -->
<section class="py-16 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold text-gray-900 mb-4">Kariyer Geçmişi</h2>
<div class="w-20 h-1 bg-blue-600 mx-auto"></div>
</div>
<div class="relative">
<div class="border-l-2 border-gray-200 absolute h-full left-1/2 transform -translate-x-1/2"></div>
<!-- Timeline Item 1 -->
<div class="mb-8 flex justify-between items-center w-full">
<div class="order-1 w-5/12"></div>
<div class="z-20 flex items-center order-1 bg-blue-500 shadow-xl w-8 h-8 rounded-full">
<h1 class="mx-auto font-semibold text-lg text-white">1</h1>
</div>
<div class="order-1 bg-gray-100 rounded-lg shadow-xl w-5/12 px-6 py-4">
<h3 class="mb-1 font-bold text-gray-800 text-xl">Akdeniz Üniversitesi - Doktora</h3>
<p class="text-sm text-gray-600">Yapay Zeka ve Veri Mühendisliği alanında doktora çalışması</p>
</div>
</div>
<!-- Timeline Item 2 -->
<div class="mb-8 flex justify-between items-center w-full flex-row-reverse">
<div class="order-1 w-5/12"></div>
<div class="z-20 flex items-center order-1 bg-purple-500 shadow-xl w-8 h-8 rounded-full">
<h1 class="mx-auto font-semibold text-lg text-white">2</h1>
</div>
<div class="order-1 bg-gray-100 rounded-lg shadow-xl w-5/12 px-6 py-4">
<h3 class="mb-1 font-bold text-gray-800 text-xl">MEB YEĞİTEK - Danışman</h3>
<p class="text-sm text-gray-600">Milli Eğitim Bakanlığı Yenilik ve Eğitim Teknolojileri Genel Müdürlüğü'nde çalışmalar</p>
</div>
</div>
<!-- Timeline Item 3 -->
<div class="mb-8 flex justify-between items-center w-full">
<div class="order-1 w-5/12"></div>
<div class="z-20 flex items-center order-1 bg-green-500 shadow-xl w-8 h-8 rounded-full">
<h1 class="mx-auto font-semibold text-lg text-white">3</h1>
</div>
<div class="order-1 bg-gray-100 rounded-lg shadow-xl w-5/12 px-6 py-4">
<h3 class="mb-1 font-bold text-gray-800 text-xl">FEYZA Projesi</h3>
<p class="text-sm text-gray-600">Eğitimde yapay zeka kullanımını yaygınlaştırmayı amaçlayan projeye katkılar</p>
</div>
</div>
<!-- Timeline Item 4 -->
<div class="mb-8 flex justify-between items-center w-full flex-row-reverse">
<div class="order-1 w-5/12"></div>
<div class="z-20 flex items-center order-1 bg-yellow-500 shadow-xl w-8 h-8 rounded-full">
<h1 class="mx-auto font-semibold text-lg text-white">4</h1>
</div>
<div class="order-1 bg-gray-100 rounded-lg shadow-xl w-5/12 px-6 py-4">
<h3 class="mb-1 font-bold text-gray-800 text-xl">Yapay Zeka Okulum</h3>
<p class="text-sm text-gray-600">Öğretmenlere yönelik yapay zeka destekli eğitim platformu geliştirme</p>
</div>
</div>
<!-- Timeline Item 5 -->
<div class="mb-8 flex justify-between items-center w-full">
<div class="order-1 w-5/12"></div>
<div class="z-20 flex items-center order-1 bg-red-500 shadow-xl w-8 h-8 rounded-full">
<h1 class="mx-auto font-semibold text-lg text-white">5</h1>
</div>
<div class="order-1 bg-gray-100 rounded-lg shadow-xl w-5/12 px-6 py-4">
<h3 class="mb-1 font-bold text-gray-800 text-xl">BTK Akademi İş Birliği</h3>
<p class="text-sm text-gray-600">Python ve Makine Öğrenmesi Atölyeleri düzenleme</p>
</div>
</div>
</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">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold text-gray-900 mb-4">İletişim</h2>
<div class="w-20 h-1 bg-blue-600 mx-auto"></div>
</div>
<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-6">Bana Ulaşın</h3>
<p class="text-gray-600 mb-8">Yapay zeka, veri bilimi, makine öğrenmesi veya eğitim teknolojileri konularında iş birliği, danışmanlık veya eğitim talepleriniz için iletişime geçebilirsiniz.</p>
<div class="space-y-6">
<div class="flex items-start">
<div class="flex-shrink-0 bg-blue-100 rounded-full p-3 mr-4">
<i class="fas fa-envelope text-blue-600"></i>
</div>
<div>
<h4 class="font-medium text-gray-900">E-posta</h4>
<p class="text-gray-600">info@murataltun.com</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 bg-green-100 rounded-full p-3 mr-4">
<i class="fas fa-globe text-green-600"></i>
</div>
<div>
<h4 class="font-medium text-gray-900">Web Sitesi</h4>
<p class="text-gray-600">www.murataltun.com</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 bg-purple-100 rounded-full p-3 mr-4">
<i class="fas fa-map-marker-alt text-purple-600"></i>
</div>
<div>
<h4 class="font-medium text-gray-900">Konum</h4>
<p class="text-gray-600">Antalya, Türkiye</p>
</div>
</div>
</div>
<div class="mt-8">
<h4 class="font-medium text-gray-900 mb-4">Sosyal Medya</h4>
<div class="flex space-x-4">
<a href="#" class="bg-gray-200 hover:bg-blue-600 hover:text-white w-10 h-10 rounded-full flex items-center justify-center transition duration-300">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="#" class="bg-gray-200 hover:bg-blue-400 hover:text-white w-10 h-10 rounded-full flex items-center justify-center transition duration-300">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="bg-gray-200 hover:bg-gray-700 hover:text-white w-10 h-10 rounded-full flex items-center justify-center transition duration-300">
<i class="fab fa-github"></i>
</a>
<a href="#" class="bg-gray-200 hover:bg-green-600 hover:text-white w-10 h-10 rounded-full flex items-center justify-center transition duration-300">
<i class="fab fa-researchgate"></i>
</a>
<a href="#" class="bg-gray-200 hover:bg-red-600 hover:text-white w-10 h-10 rounded-full flex items-center justify-center transition duration-300">
<i class="fab fa-youtube"></i>
</a>
</div>
</div>
</div>
<div class="md:w-1/2">
<form class="bg-white p-6 rounded-xl shadow-sm">
<div class="mb-6">
<label for="name" class="block text-gray-700 font-medium mb-2">Adınız</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 focus:border-transparent" placeholder="Adınız ve soyadınız">
</div>
<div class="mb-6">
<label for="email" class="block text-gray-700 font-medium mb-2">E-posta</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 focus:border-transparent" placeholder="E-posta adresiniz">
</div>
<div class="mb-6">
<label for="subject" class="block text-gray-700 font-medium mb-2">Konu</label>
<select 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 focus:border-transparent">
<option value="">Konu seçiniz</option>
<option value="education">Eğitim Talebi</option>
<option value="consulting">Danışmanlık</option>
<option value="collaboration">İş Birliği</option>
<option value="other">Diğer</option>
</select>
</div>
<div class="mb-6">
<label for="message" class="block text-gray-700 font-medium mb-2">Mesajınız</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 focus:border-transparent" placeholder="Mesajınız..."></textarea>
</div>
<button type="submit" class="w-full bg-blue-600 hover:bg-blue-700 text-white font-medium py-3 px-4 rounded-lg transition duration-300">
Mesaj Gönder
</button>
</form>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 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">
<span class="text-xl font-bold">Dr. Murat Altun</span>
<p class="text-gray-400 mt-2">Yapay Zeka Uzmanı, Eğitmen ve Yazar</p>
</div>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-white transition duration-300">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition duration-300">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition duration-300">
<i class="fab fa-github"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition duration-300">
<i class="fab fa-researchgate"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition duration-300">
<i class="fab fa-youtube"></i>
</a>
</div>
</div>
<div class="border-t border-gray-800 mt-8 pt-8 text-center text-gray-400">
<p>© 2023 Dr. Murat Altun. Tüm hakları saklıdır.</p>
</div>
</div>
</footer>
<script>
// Mobile menu toggle
document.getElementById('mobile-menu-button').addEventListener('click', function() {
const menu = document.getElementById('mobile-menu');
menu.classList.toggle('hidden');
});
// 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 - 70,
behavior: 'smooth'
});
// Close mobile menu if open
document.getElementById('mobile-menu').classList.add('hidden');
// Update active nav link
document.querySelectorAll('.nav-link').forEach(link => {
link.classList.remove('active');
});
this.classList.add('active');
}
});
});
// Update active nav link on scroll
window.addEventListener('scroll', function() {
const scrollPosition = window.scrollY;
document.querySelectorAll('section').forEach(section => {
const sectionTop = section.offsetTop - 100;
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');
}
});
}
});
});
</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=drmurataltun/webpage" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |