-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
494 lines (459 loc) · 25 KB
/
index.html
File metadata and controls
494 lines (459 loc) · 25 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover" />
<title>Ali Can Keskin — Software Engineer</title>
<meta name="description" content="Portfolio of Ali Can Keskin — Software Engineer specializing in XR development, C++ systems, and cross-platform architectures." />
<!-- Favicon -->
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'><rect width='32' height='32' rx='6' fill='%230f1318'/><text x='16' y='22' font-family='monospace' font-size='14' font-weight='bold' fill='%2322d3ee' text-anchor='middle'>{A}</text></svg>" type="image/svg+xml" />
<!-- Open Graph -->
<meta property="og:type" content="website" />
<meta property="og:title" content="Ali Can Keskin — Software Engineer" />
<meta property="og:description" content="Software Engineer — XR, games, computer vision, systems architecture, and AI." />
<meta property="og:url" content="https://ackeskin.github.io" />
<meta property="og:image" content="https://ackeskin.github.io/images/procedural_planets.png" />
<meta name="twitter:card" content="summary_large_image" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;500;700&family=Outfit:wght@300;400;500;600;700&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" />
<link rel="stylesheet" href="assets/css/redesign.css" />
</head>
<body>
<!-- Skip to content -->
<a href="#main" class="skip-link">Skip to content</a>
<!-- Loader -->
<div id="loader" aria-hidden="true">
<div class="loader__bar"></div>
<span class="loader__text">LOADING</span>
</div>
<!-- Cursor follower -->
<div id="cursor-glow" aria-hidden="true"></div>
<!-- Morphing wireframe background -->
<canvas id="wireframe-bg" aria-hidden="true"></canvas>
<!-- Navigation -->
<nav id="nav" role="navigation">
<div class="nav__logo">
<span class="nav__logo-bracket">{</span>
<span class="nav__logo-name">ACK</span>
<span class="nav__logo-bracket">}</span>
</div>
<ul class="nav__links">
<li><a href="#hero" class="nav__link active" data-section="hero"><span class="nav__link-index">00</span>Home</a></li>
<li><a href="#about" class="nav__link" data-section="about"><span class="nav__link-index">01</span>About</a></li>
<li><a href="#experience" class="nav__link" data-section="experience"><span class="nav__link-index">02</span>Experience</a></li>
<li><a href="#education" class="nav__link" data-section="education"><span class="nav__link-index">03</span>Education</a></li>
<li><a href="#projects" class="nav__link" data-section="projects"><span class="nav__link-index">04</span>Projects</a></li>
<li><a href="#contact" class="nav__link" data-section="contact"><span class="nav__link-index">05</span>Contact</a></li>
</ul>
<div class="nav__footer">
<a href="https://github.com/AcKeskin" target="_blank" rel="noopener" aria-label="GitHub"><i class="fa-brands fa-github"></i></a>
<a href="https://www.linkedin.com/in/ali-can-keskin/" target="_blank" rel="noopener" aria-label="LinkedIn"><i class="fa-brands fa-linkedin-in"></i></a>
<a href="mailto:keskinac1998@gmail.com" aria-label="Email"><i class="fa-solid fa-envelope"></i></a>
</div>
</nav>
<!-- Mobile nav toggle -->
<button id="nav-toggle" class="nav-toggle" aria-label="Toggle navigation">
<span></span><span></span><span></span>
</button>
<div id="nav-backdrop" class="nav-backdrop"></div>
<!-- Main content -->
<main id="main">
<!-- Hero -->
<section id="hero" class="section hero">
<div class="hero__grid-bg" aria-hidden="true"></div>
<div class="hero__content">
<p class="hero__greeting reveal" data-delay="0">// software engineer</p>
<h1 class="hero__name reveal" data-delay="1">Ali Can<br/>Keskin<span class="hero__cursor">_</span></h1>
<p class="hero__title reveal" data-delay="2">XR & Systems Engineer</p>
<p class="hero__subtitle reveal" data-delay="3">XR • Games • Computer Vision • Systems Architecture • AI</p>
<div class="hero__cta reveal" data-delay="4">
<a href="#projects" class="btn btn--primary">View Projects</a>
<a href="https://github.com/AcKeskin/AcKeskin.github.io/raw/main/docs/Ali_Can_Keskin_Resume.pdf" download class="btn btn--outline" target="_blank" rel="noopener"><i class="fa-solid fa-file-pdf"></i> Resume</a>
</div>
</div>
<div class="hero__scroll-indicator reveal" data-delay="5">
<span>Scroll</span>
<div class="hero__scroll-line"></div>
</div>
</section>
<!-- About -->
<section id="about" class="section section--alt about">
<div class="section__header">
<span class="section__index">01</span>
<h2 class="section__title">About Me</h2>
<div class="section__line"></div>
</div>
<div class="about__grid">
<div class="about__image-col reveal-slide">
<div class="about__image-wrapper">
<img src="images/profile.jpg" alt="Ali Can Keskin, software engineer" class="about__image" />
<div class="about__image-border"></div>
</div>
</div>
<div class="about__text-col">
<p class="about__bio reveal-slide">Software engineer with 4+ years shipping cross-platform XR clients and real-time streaming systems. Most of my work lives in C++ and Unity — WebRTC streaming, OpenXR, native client architecture — across HoloLens 2, Meta Quest, PICO, HTC Vive Focus 3, Magic Leap 2, Windows, Web, and Android.</p>
<p class="about__bio reveal-slide">Outside of work I gravitate toward game development, computer vision, software architecture, and keeping up with the latest in AI. I care about how things are built as much as what gets built: clean architecture, clear ownership, and code that holds up.</p>
<div class="about__stats reveal-slide">
<div class="about__stat">
<span class="about__stat-number">4+</span>
<span class="about__stat-label">Years Experience</span>
</div>
<div class="about__stat">
<span class="about__stat-number">8+</span>
<span class="about__stat-label">Platforms Shipped</span>
</div>
<div class="about__stat">
<span class="about__stat-number">3</span>
<span class="about__stat-label">Published Games</span>
</div>
<div class="about__stat about__stat--muted">
<span class="about__stat-number">???</span>
<span class="about__stat-label">Unfinished Side Projects</span>
</div>
</div>
<div class="about__tech reveal-slide">
<span class="tag tag--core">C++</span>
<span class="tag tag--core">C#</span>
<span class="tag tag--core">Unity</span>
<span class="tag tag--core">OpenXR</span>
<span class="tag tag--core">WebRTC</span>
<span class="tag tag--core">XR</span>
<span class="tag tag--proficient">OpenGL</span>
<span class="tag tag--proficient">JavaScript</span>
<span class="tag tag--proficient">CMake</span>
<span class="tag tag--proficient">Git</span>
<span class="tag tag--proficient">Java</span>
<span class="tag tag--proficient">WebSockets</span>
<span class="tag tag--proficient">JNI</span>
<span class="tag tag--proficient">Android</span>
<span class="tag tag--proficient">SQL</span>
<span class="tag tag--proficient">CI/CD</span>
<span class="tag tag--proficient">MRTK3</span>
<span class="tag tag--proficient">XR Interaction Toolkit</span>
<span class="tag tag--familiar">Python</span>
<span class="tag tag--familiar">Unreal Engine</span>
<span class="tag tag--familiar">ImGui</span>
<span class="tag tag--familiar">OpenCV</span>
<span class="tag tag--familiar">Firebase</span>
</div>
<div class="about__tech-legend reveal-slide">
<span class="legend__item"><span class="legend__dot legend__dot--core"></span>Core</span>
<span class="legend__item"><span class="legend__dot legend__dot--proficient"></span>Proficient</span>
<span class="legend__item"><span class="legend__dot legend__dot--familiar"></span>Familiar</span>
</div>
</div>
</div>
</section>
<!-- Beyond Code -->
<section id="beyond" class="section beyond">
<div class="section__header">
<span class="section__index">//</span>
<h2 class="section__title">Beyond Code</h2>
<div class="section__line"></div>
</div>
<div class="beyond__grid">
<div class="beyond__card reveal-slide">
<i class="fa-solid fa-gamepad beyond__icon"></i>
<h3 class="beyond__label">Games</h3>
<p class="beyond__desc">PC master race. Everything from competitive shooters to story-driven single-player. If it has good design, I'm in.</p>
</div>
<div class="beyond__card reveal-slide">
<i class="fa-solid fa-headphones beyond__icon"></i>
<h3 class="beyond__label">Music</h3>
<p class="beyond__desc">Rock, metal, rap, pop, film soundtracks — no filter. Piano player, though the piano has been patient with me lately.</p>
</div>
<div class="beyond__card reveal-slide">
<i class="fa-solid fa-futbol beyond__icon"></i>
<h3 class="beyond__label">Sports</h3>
<p class="beyond__desc">Football, basketball, table tennis, swimming, volleyball. Also chess — if that counts.</p>
</div>
<div class="beyond__card reveal-slide">
<i class="fa-solid fa-tv beyond__icon"></i>
<h3 class="beyond__label">Series</h3>
<p class="beyond__desc">Drawn to smart characters and darker tones — Person of Interest, Sherlock, that kind of thing.</p>
</div>
</div>
</section>
<!-- Experience -->
<section id="experience" class="section experience">
<div class="section__header">
<span class="section__index">02</span>
<h2 class="section__title">Experience</h2>
<div class="section__line"></div>
</div>
<div class="experience__timeline">
<article class="exp-card reveal-slide">
<div class="exp-card__date">
<span class="exp-card__period">JUN 2022 — PRESENT</span>
</div>
<div class="exp-card__body">
<div class="exp-card__dot"></div>
<h3 class="exp-card__title">Software Engineer</h3>
<h4 class="exp-card__company">Hololight — Munich, DE</h4>
<ul class="exp-card__list">
<li>Led development of a unified Unity/C# front-end architecture powering enterprise XR streaming clients across 8+ devices (Meta Quest, PICO, HTC Vive Focus 3, HoloLens 2, Magic Leap 2, Desktop, Web)</li>
<li>Designed modular connection management, codec configuration (H.264/H.265), passthrough systems, and cross-device UX — serving as the primary interface layer for all streaming clients</li>
<li>Lead developer on the Hub Client, a cross-device XR app launcher — app catalog, SSE handling, database management, and multi-vendor release pipelines</li>
<li>Developed native Android C++/JNI integrations for standalone XR headsets, contributing to runtime performance and device-specific optimizations</li>
<li>Built the Web client from scratch with JavaScript and WebSockets — XR streaming in the browser, no install required</li>
<li>Unified Android build variants into CI pipelines and built internal Python tooling for PR automation and git-based validation</li>
</ul>
<div class="exp-card__tags">
<span class="tag tag--sm">C++</span>
<span class="tag tag--sm">C#</span>
<span class="tag tag--sm">JavaScript</span>
<span class="tag tag--sm">WebRTC</span>
<span class="tag tag--sm">OpenXR</span>
<span class="tag tag--sm">Unity</span>
<span class="tag tag--sm">JNI</span>
<span class="tag tag--sm">Python</span>
<span class="tag tag--sm">CI/CD</span>
</div>
</div>
</article>
<article class="exp-card reveal-slide">
<div class="exp-card__date">
<span class="exp-card__period">SEP 2021 — MAR 2022</span>
</div>
<div class="exp-card__body">
<div class="exp-card__dot"></div>
<h3 class="exp-card__title">Unity Developer</h3>
<h4 class="exp-card__company">Simovate — Ankara, TR</h4>
<p class="exp-card__desc">Built AR/VR applications for industrial training and remote support in Unity (C#), with performance-critical parts in C++. Built a realistic CNC Milling Machine Simulator showcased at Oracle's Industry Innovation Lab. Wrote a custom real-time mesh manipulation library for VR cutting and deformation simulations. Built an Android Remote Maintenance Application with live annotations and data streaming.</p>
<div class="exp-card__tags">
<span class="tag tag--sm">Unity</span>
<span class="tag tag--sm">C#</span>
<span class="tag tag--sm">C++</span>
<span class="tag tag--sm">XR</span>
</div>
</div>
</article>
<article class="exp-card reveal-slide">
<div class="exp-card__date">
<span class="exp-card__period">MAY — SEP 2020</span>
</div>
<div class="exp-card__body">
<div class="exp-card__dot"></div>
<h3 class="exp-card__title">Android Developer</h3>
<h4 class="exp-card__company">Medication Hour — Ankara, TR</h4>
<p class="exp-card__desc">Developed and launched Medication Hour, an Android app for managing medication schedules. Built with Java and Firebase for real-time sync, authentication, and push notifications. Managed the full cycle from idea to deployment.</p>
<div class="exp-card__tags">
<span class="tag tag--sm">Java</span>
<span class="tag tag--sm">Android</span>
<span class="tag tag--sm">Firebase</span>
</div>
<a href="https://play.google.com/store/apps/details?id=com.medhour.ilacsaati" class="exp-card__link" target="_blank" rel="noopener">View on Play Store <i class="fa-solid fa-arrow-up-right-from-square"></i></a>
</div>
</article>
<article class="exp-card reveal-slide">
<div class="exp-card__date">
<span class="exp-card__period">JUL — AUG 2020</span>
</div>
<div class="exp-card__body">
<div class="exp-card__dot"></div>
<h3 class="exp-card__title">Software Engineering Intern</h3>
<h4 class="exp-card__company">HAVELSAN — Ankara, TR</h4>
<p class="exp-card__desc">Built calculation modules and query logic for HAVELSAN's enterprise payroll system using Java and Spring Boot, improving payroll automation through API integration.</p>
<div class="exp-card__tags">
<span class="tag tag--sm">Java</span>
<span class="tag tag--sm">Spring Boot</span>
</div>
</div>
</article>
<article class="exp-card reveal-slide">
<div class="exp-card__date">
<span class="exp-card__period">JUN — JUL 2019</span>
</div>
<div class="exp-card__body">
<div class="exp-card__dot"></div>
<h3 class="exp-card__title">Game Development Intern</h3>
<h4 class="exp-card__company">Erik Games — Ankara, TR</h4>
<p class="exp-card__desc">Developed gameplay features and performance optimizations for PlayStation 4 titles using Unreal Engine 4 and Unity.</p>
<div class="exp-card__tags">
<span class="tag tag--sm">C#</span>
<span class="tag tag--sm">Unity</span>
<span class="tag tag--sm">Unreal Engine</span>
<span class="tag tag--sm">PS4</span>
</div>
<div class="exp-card__links">
<a href="https://store.playstation.com/en-ie/product/EP5823-CUSA17353_00-EGBRAINRETROSP01" class="exp-card__link" target="_blank" rel="noopener">Brain in Retro Space <i class="fa-solid fa-arrow-up-right-from-square"></i></a>
<a href="https://store.playstation.com/en-gb/product/EP5823-CUSA18906_00-ALPHAINVASIONEG3" class="exp-card__link" target="_blank" rel="noopener">Alpha Invasion <i class="fa-solid fa-arrow-up-right-from-square"></i></a>
<a href="https://store.playstation.com/tr-tr/product/EP5823-CUSA16329_00-EGBRAINBREAKER01" class="exp-card__link" target="_blank" rel="noopener">Brain Breaker <i class="fa-solid fa-arrow-up-right-from-square"></i></a>
</div>
</div>
</article>
</div>
</section>
<!-- Education -->
<section id="education" class="section education">
<div class="section__header">
<span class="section__index">03</span>
<h2 class="section__title">Education & Certifications</h2>
<div class="section__line"></div>
</div>
<div class="education__grid">
<article class="edu-card reveal-slide">
<div class="edu-card__icon"><i class="fa-solid fa-graduation-cap"></i></div>
<h3 class="edu-card__title">TED University</h3>
<p class="edu-card__subtitle">B.E. Computer Engineering | Minor in Business Administration</p>
<p class="edu-card__period">Sept 2017 — May 2021 — Ankara, TR</p>
<p class="edu-card__detail">GPA: 3.48/4.0. Graduation Project: Virtuanance — remote AR/VR maintenance via WebRTC streaming.</p>
</article>
<article class="edu-card reveal-slide">
<div class="edu-card__icon"><i class="fa-solid fa-certificate"></i></div>
<h3 class="edu-card__title">MITx 6.86x</h3>
<p class="edu-card__subtitle">Machine Learning with Python: From Linear Models to Deep Learning</p>
<p class="edu-card__period">Dec 2020 — MIT (edX)</p>
<p class="edu-card__detail">Linear classifiers, nonlinear classification, linear regression, collaborative filtering, neural networks, unsupervised learning, and reinforcement learning.</p>
<a href="https://courses.edx.org/certificates/6313272a840b4d5eb0181c812841be16" class="exp-card__link" target="_blank" rel="noopener">View Certificate <i class="fa-solid fa-arrow-up-right-from-square"></i></a>
</article>
</div>
<div class="education__coursework">
<h3 class="education__coursework-title reveal-slide">Coursework Highlights</h3>
<p class="education__coursework-desc reveal-slide">Selected work from Computer Graphics (CMPE 360) — 3D modeling, lighting, shading, and rendering with Blender and WebGL.</p>
<div class="education__gallery">
<figure class="edu-gallery__item reveal-slide">
<img src="images/cg_trex_tardis.png" alt="Low-poly T-Rex and TARDIS scene" loading="lazy" />
<figcaption>Low-poly scene: T-Rex & TARDIS with custom textures and lighting</figcaption>
</figure>
<figure class="edu-gallery__item reveal-slide">
<img src="images/cg_reflections.png" alt="Reflection and refraction render" loading="lazy" />
<figcaption>Reflection, refraction, and Blinn-Phong shading</figcaption>
</figure>
</div>
</div>
</section>
<!-- Projects -->
<section id="projects" class="section section--alt projects">
<div class="section__header">
<span class="section__index">04</span>
<h2 class="section__title">Projects</h2>
<div class="section__line"></div>
</div>
<div class="projects__grid">
<article class="project-card project-card--featured reveal-slide">
<div class="project-card__media">
<video autoplay loop muted playsinline poster="images/procedural_planets.png">
<source src="videos/procedural_planets_cinematic.mp4" type="video/mp4" />
</video>
<div class="project-card__overlay"></div>
</div>
<div class="project-card__content">
<span class="project-card__label">Featured Project</span>
<h3 class="project-card__title">Procedural Planets</h3>
<p class="project-card__desc">A GPU-accelerated procedural planet renderer built with C++17 and OpenGL. Generates realistic Earth-like planets with compute shader terrain, atmospheric Rayleigh scattering, ocean rendering, biome classification, and icosahedron-based LOD — all in real time.</p>
<div class="project-card__tags">
<span class="tag tag--sm">C++17</span>
<span class="tag tag--sm">OpenGL</span>
<span class="tag tag--sm">Compute Shaders</span>
<span class="tag tag--sm">Procedural Generation</span>
</div>
<a href="https://github.com/AcKeskin/procedural-planets" class="project-card__link" target="_blank" rel="noopener"><i class="fa-brands fa-github"></i> Source Code</a>
</div>
</article>
<article class="project-card reveal-slide">
<div class="project-card__media">
<video autoplay loop muted playsinline>
<source src="videos/lf.mp4" type="video/mp4" />
</video>
<div class="project-card__overlay"></div>
</div>
<div class="project-card__content">
<span class="project-card__label">Game</span>
<h3 class="project-card__title">Last Fighter</h3>
<p class="project-card__desc">A space shooter where you defend your base against enemy waves. Built with Unity and C#, with custom AI, particle effects, and scaling difficulty.</p>
<div class="project-card__tags">
<span class="tag tag--sm">Unity</span>
<span class="tag tag--sm">C#</span>
<span class="tag tag--sm">3D</span>
</div>
<a href="https://github.com/LastFighter" class="project-card__link" target="_blank" rel="noopener"><i class="fa-brands fa-github"></i> Source Code</a>
</div>
</article>
<article class="project-card reveal-slide">
<div class="project-card__media">
<video autoplay loop muted playsinline>
<source src="videos/Virtuanance.mp4#t=28,120" type="video/mp4" />
</video>
<div class="project-card__overlay"></div>
</div>
<div class="project-card__content">
<span class="project-card__label">Senior Project</span>
<h3 class="project-card__title">Virtuanance</h3>
<p class="project-card__desc">Remote AR/VR maintenance — professionals view the technician's field perspective, retrieve 3D models, and share real-time annotations. Built with Unity and OpenCV for marker tracking.</p>
<div class="project-card__tags">
<span class="tag tag--sm">Unity</span>
<span class="tag tag--sm">XR</span>
<span class="tag tag--sm">OpenCV</span>
</div>
<a href="https://github.com/Virtuanance" class="project-card__link" target="_blank" rel="noopener"><i class="fa-brands fa-github"></i> Source Code</a>
</div>
</article>
<article class="project-card reveal-slide">
<div class="project-card__media">
<img src="images/saliency_comparison.png" alt="Original image vs predicted saliency heatmap" loading="lazy" />
<div class="project-card__overlay"></div>
</div>
<div class="project-card__content">
<span class="project-card__label">Research</span>
<h3 class="project-card__title">Saliency Prediction with cGAN</h3>
<p class="project-card__desc">Undergraduate research using Conditional GANs to predict visual saliency maps. Added human/face detection channels via DeepLabV3+ and DLIB for improved accuracy across four distinct viewing tasks.</p>
<div class="project-card__tags">
<span class="tag tag--sm">Python</span>
<span class="tag tag--sm">GAN</span>
<span class="tag tag--sm">Computer Vision</span>
</div>
<a href="https://github.com/AcKeskin/AcKeskin.github.io/blob/main/docs/CMPE490_Final_Report.pdf" class="project-card__link" target="_blank" rel="noopener"><i class="fa-solid fa-file-pdf"></i> Report</a>
</div>
</article>
</div>
</section>
<!-- Contact -->
<section id="contact" class="section contact">
<div class="section__header">
<span class="section__index">05</span>
<h2 class="section__title">Contact</h2>
<div class="section__line"></div>
</div>
<div class="contact__content reveal-slide">
<div class="contact__status">
<span class="contact__status-dot"></span>
Based in Munich, DE
</div>
<p class="contact__heading">Get in touch.</p>
<p class="contact__desc">Always happy to talk games, XR, graphics, architecture, or interesting side projects. Drop me a line.</p>
<div class="contact__links">
<a href="mailto:keskinac1998@gmail.com" class="btn btn--primary"><i class="fa-solid fa-envelope"></i> Send Email</a>
<a href="https://www.linkedin.com/in/ali-can-keskin/" class="btn btn--outline" target="_blank" rel="noopener"><i class="fa-brands fa-linkedin-in"></i> LinkedIn</a>
</div>
</div>
</section>
<!-- Footer -->
<footer id="footer" class="footer">
<div class="footer__content">
<div class="footer__left">
<span class="footer__logo">
<span class="nav__logo-bracket">{</span>
<span class="nav__logo-name">ACK</span>
<span class="nav__logo-bracket">}</span>
</span>
<p class="footer__tagline">Still tweaking.</p>
</div>
<div class="footer__right">
<div class="footer__socials">
<a href="https://github.com/AcKeskin" target="_blank" rel="noopener" aria-label="GitHub"><i class="fa-brands fa-github"></i></a>
<a href="https://www.linkedin.com/in/ali-can-keskin/" target="_blank" rel="noopener" aria-label="LinkedIn"><i class="fa-brands fa-linkedin-in"></i></a>
<a href="mailto:keskinac1998@gmail.com" aria-label="Email"><i class="fa-solid fa-envelope"></i></a>
</div>
</div>
</div>
<div class="footer__bottom">
<p>© 2026 Ali Can Keskin</p>
</div>
</footer>
</main>
<script src="assets/js/redesign.js"></script>
</body>
</html>