-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
829 lines (698 loc) · 30.6 KB
/
index.html
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
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Kadir Ergun - CV , Engineering Manager </title>
<style>
body {
font-family: 'Calibri', 'Arial', sans-serif;
font-size: 14px;
line-height: 1.5;
margin: 0;
padding: 0;
}
/* Anchor links styling */
a {
color: #D27A22;
text-decoration: none;
}
a:hover {
text-decoration: underline;
color: #FF9900;
}
/* Unordered list styling */
ul {
list-style-type: disc;
margin-left: 20px;
}
ul li {
margin-bottom: 10px;
}
/* Image box-shadow for profile picture */
.image-placeholder img {
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
/* Container for main content */
.container {
width: 900px;
margin: 20px auto;
display: flex;
justify-content: space-between;
background-color: #fff;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
/* Left Sidebar */
.sidebar {
width: 30%;
background-color: #355070;
padding: 20px;
color: white;
}
/* Sidebar Headers */
.sidebar h2 {
color: #fff;
font-size: 18px;
margin-bottom: 15px;
text-transform: uppercase;
}
/* General Sidebar Paragraph Styling */
.sidebar p {
margin-bottom: 10px;
}
/* Sidebar Section Styling */
.sidebar-section {
margin-bottom: 30px;
}
.sidebar-section p {
margin: 5px 0;
}
/* Personal Details Icons */
.icon {
margin-right: 10px;
font-size: 16px;
}
/* Main Content Area */
.main-content {
width: 70%;
padding: 20px;
}
/* Main Content Headings */
.main-content h1 {
font-size: 36px;
color: #D27A22;
}
.main-content h2 {
font-size: 18px;
color: #ffffff;
background-color: #355070;
padding: 5px 10px;
text-transform: uppercase;
margin-bottom: 15px;
}
/* Work Experience and Education Styling */
.main-content h3 {
background-color: #f0f0f0;
padding: 5px;
font-weight: bold;
color: #333;
margin-top: 10px;
border-left: 4px solid #D27A22;
}
/* General Paragraph Styling */
.main-content p {
margin-bottom: 10px;
}
/* Section Margins */
.work-experience, .education, .skills, .projects {
margin-bottom: 20px;
}
.main-content ul {
margin-left: 20px;
}
/* Language section with stars */
.stars {
display: inline-block;
}
.stars span {
color: #000;
font-size: 16px;
}
/* Footer styles */
.footer {
font-size: 12px;
color: #555;
margin-top: 20px;
}
/* Skills and Experience sections with square bullet points */
.skills ul, .previous-experience ul {
list-style-type: square;
margin-left: 20px;
}
/* Sidebar Icons and Links */
.sidebar-section a i {
font-size: 18px;
margin-right: 15px;
}
/* Sidebar Links and Spacing */
.sidebar-section a {
display: inline-block;
margin-bottom: 10px;
color: white;
text-decoration: none;
}
/* Flexbox for Aligning Icons and Text */
.sidebar-section p {
display: flex;
align-items: center;
margin-bottom: 10px;
}
/* Sidebar Icon Sizing */
.sidebar-section i {
margin-right: 10px;
font-size: 18px;
}
/* Sidebar Hover Effect */
.sidebar-section p a:hover {
color: #ddd;
}
/* Flexbox for Icon Alignment */
.sidebar-section span {
display: flex;
align-items: center;
}
/* Projects Section */
.projects h3 {
font-size: 14px; /* Smaller font size for project titles */
color: #333;
margin-top: 5px; /* Reduced margin */
margin-bottom: 5px;
font-weight: bold;
}
.projects p {
font-size: 12px; /* Smaller font size for descriptions */
margin-bottom: 5px; /* Reduced space between paragraphs */
color: #555;
}
.projects ul {
margin-left: 15px; /* Smaller left margin */
margin-bottom: 5px; /* Less space between list items */
}
.projects li {
font-size: 12px; /* Smaller font size for list items */
margin-bottom: 3px; /* Reduced space between list items */
}
.projects {
margin-bottom: 15px; /* Reduced bottom margin */
}
/* Projects Section */
.projects h3 {
font-size: 12px; /* Smaller font size for project titles */
color: #333;
margin-top: 5px;
margin-bottom: 5px;
font-weight: bold;
display: inline; /* Display title and description inline */
}
.projects span.description {
font-size: 12px; /* Smaller font for descriptions */
color: #777; /* Lighter color for description */
margin-left: 10px; /* Space between title and description */
}
.projects ul {
margin:0;
}
.projects li {
font-size: 12px;
margin-bottom: 3px;
}
/* Sidebar Skills Section */
.skills ul {
list-style-type: none; /* Remove default list style */
padding-left: 0; /* Remove left padding */
padding-top: 0;
}
.skills ul li {
margin-left: 0; /* Remove left margin */
padding-left: 10px; /* Add some padding to align neatly */
text-indent: -10px; /* Adjust the text indent for better alignment */
position: relative;
}
.skills ul li:before {
content: "•"; /* Use bullet point */
color: #D27A22; /* Change bullet point color */
position: absolute;
left: 0; /* Align bullet point closer to the text */
top: 0;
}
.project-link {
font-size: 12px; /* Make the project link smaller */
margin-bottom: 10px;
}
.project-link a {
color: #D27A22;
text-decoration: none;
}
.project-link a:hover {
text-decoration: underline;
}
/* Styles specific for print */
@media print {
body {
margin: 0;
padding: 0;
background-color: white;
}
.container {
width: 100%;
margin: 0;
padding: 0;
box-shadow: none;
}
/* Force background colors and keep color styles */
* {
-webkit-print-color-adjust: exact; /* For Chrome/Safari */
color-adjust: exact; /* For Firefox */
}
/* Make only the container visible for printing */
body * {
visibility: hidden;
}
.container, .container * {
visibility: visible;
}
/* Disable margins around the content */
.container {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: 0;
padding: 0;
}
}
/* Sidebar and other element colors */
.sidebar {
background-color: #355070; /* Keep sidebar color for print */
color: white;
}
.main-content h1, .main-content h2, .main-content h3 {
color: #D27A22;
}
.main-content h2 {
background-color: #355070; /* Ensure h2 background stays visible */
color: #ffffff;
}
/* General styles for normal screen display */
@media screen {
body {
margin: 0;
padding: 0;
background-color: #f8f8f8;
}
.container {
width: 900px;
margin: 20px auto;
padding: 20px;
background-color: #fff;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
}
/* Styles specific for print */
@media print {
body {
margin: 0;
padding: 0;
background-color: white;
}
.container {
width: 100%;
margin: 0;
padding: 0;
box-shadow: none;
}
/* Force background colors and keep color styles */
* {
-webkit-print-color-adjust: exact; /* For Chrome/Safari */
color-adjust: exact; /* For Firefox */
}
/* Make only the container visible for printing */
body * {
visibility: hidden;
}
.container, .container * {
visibility: visible;
}
/* Disable margins around the content */
.container {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: 0;
padding: 0;
}
}
/* Sidebar and other element colors */
.sidebar {
background-color: #355070; /* Keep sidebar color for print */
color: white;
}
.main-content h1, .main-content h2, .main-content h3 {
color: #D27A22;
}
.main-content h2 {
background-color: #355070; /* Ensure h2 background stays visible */
color: #ffffff;
}
/* Adjust main content padding for alignment */
.main-content {
padding-left: 30px; /* Adjust this padding to center content better */
}
/* Work experience adjustments */
.work-experience h3, .work-experience p, .work-experience ul {
padding-left: 10px; /* Adjust this padding to bring it to the right */
margin-left: 0; /* Reset margin to avoid extra left shift */
}
/* Skills adjustments to reduce spacing */
.skills ul li {
padding-left: 10px; /* Slightly move to the right */
margin-left: 0; /* Reset to align properly */
}
/* Ensure consistent padding inside main content */
.main-content p, .main-content ul {
padding-left: 10px;
}
</style>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
</head>
<body>
<div class="container">
<!-- Sidebar (Left) -->
<div class="sidebar">
<div class="image-placeholder">
<img src="1709904831969.jpg" alt="Profile Picture" width="150" height="150" style="border-radius: 50%; display: block; margin: 0 auto;">
</div>
<div class="sidebar-section">
<h2>Personal</h2>
<!-- Name Section -->
<p><span><i class="fas fa-user"></i> Kadir Ergun</span></p>
<!-- Date of Birth Section -->
<p><span><i class="fas fa-birthday-cake"></i> 21/07/1988</span></p>
<!-- Location Section -->
<p><span><i class="fas fa-map-marker-alt"></i> Istanbul, Turkey</span></p>
<!-- Phone Section -->
<p><a href="tel:+905071037277" style="color: white; text-decoration: none;">
<span><i class="fas fa-phone"></i> +90 507 103 7277</span></a></p>
<!-- Email Section -->
<p><a href="mailto:[email protected]" style="color: white; text-decoration: none;">
<span><i class="fas fa-envelope"></i> [email protected]</span></a></p>
<!-- LinkedIn Section -->
<p><a href="https://linkedin.com/in/kadirergun" target="_blank" style="color: white; text-decoration: none;">
<span><i class="fab fa-linkedin"></i> linkedin.com/in/kadirergun</span></a></p>
<!-- GitHub Section -->
<p><a href="https://github.com/lightfire" target="_blank" style="color: white; text-decoration: none;">
<span><i class="fab fa-github"></i> github.com/lightfire</span></a></p>
</div>
<div class="sidebar-section">
<h2>Languages</h2>
<p>English: <span class="stars">★★★★★</span></p>
<p>Turkish: <span class="stars">★★★★★</span></p>
<p>German: <span class="stars">★★★☆☆</span></p>
</div>
<div class="sidebar-section skills">
<h2>Skills</h2>
<ul>
<li>Leadership & Team Management: Expert in leading cross-functional teams, mentoring, and providing technical direction.</li>
<li>Project Management: Extensive experience in full project lifecycle management, resource allocation, and risk management.</li>
<li>Technical Leadership: Strong in code reviews, ensuring SOLID principles, system design, and driving architecture improvements.</li>
<li>DevOps & CI/CD: Proficient in Jenkins, Kubernetes, Docker, CI/CD pipelines, cloud-native architectures (Huawei Cloud, Azure).</li>
<li>Agile Methodologies: Expertise in Scrum, Kanban, sprint planning, and backlog management.</li>
<li>Microservices Architecture: Skilled in Spring Boot, Kubernetes, RESTful APIs, Kafka, Redis, MyBatis, and ElasticSearch.</li>
<li>Web & Mobile Development: Android development, E-commerce platforms, and CMS platforms (Kentico, Sitecore, Xperience).</li>
<li>Database Management: MongoDB, MySQL, PostgreSQL, Redis.</li>
<li>Client & Vendor Management: Extensive experience in stakeholder communication, vendor negotiation, and project reporting.</li>
<li>Analytical Skills: Success metrics collection and analysis, performance optimization, and technical problem-solving.</li>
</ul>
</div>
<div class="sidebar-section">
<h2>Hobbies</h2>
<p>Driving</p>
<p>Cooking</p>
</div>
</div>
<!-- Main Content Area (Right) -->
<div class="main-content">
<h1>Kadir Ergun</h1>
<p>Engineering Manager and Technical Lead with over 10 years of experience in software development, team leadership, and technical project management across various industries.</p>
<div class="education">
<h2>Education</h2>
<p><strong>Okan University</strong> – Master of Business Administration (MBA) (2016 - )</p>
<p><strong>Işık University</strong> – Associate of Arts and Sciences (A.A.S.), Management Information Systems (2008–2013)</p>
</div>
<div class="work-experience">
<h2>Work Experience</h2>
<ul>
<li>
<h3>Engineering Manager | Huawei | Istanbul, Turkey | Jul 2022 – Present</h3>
<p>Leading the development of large-scale projects, including employee engagement platforms and navigation services.</p>
<ul>
<li><strong>WeFocus SaaS Application</strong>: Developed a microservices-based employee engagement platform using Java, VueJS, MongoDB, PostgreSQL, Kubernetes, and Istio. Improved platform performance by 30%.</li>
<li><strong>Petal Maps</strong>: Led the development of Petal Maps, a navigation app for HarmonyOS, Android, and iOS, using Spring Boot, MyBatis, Kafka, Hibernate, and Redis.</li>
<li><strong>EBG (e.huawei.com) E-commerce B2B Multilingual Website Project</strong>: Led custom CMS development for Huawei’s B2B e-commerce platform, handling multilingual capabilities.</li>
<li>Additional Contributions:
<ul>
<li>Custom CMS development tailored for Huawei’s needs.</li>
<li>System engineering, requirement transfer, and problem-solving, including vendor management.</li>
<li>Created High-Level Design (HLD) documents to capture and document specific project requirements.</li>
</ul>
</li>
<li>Technologies Used: Spring Boot, Microservices, ElasticSearch, NLP, Restful, Kafka, Kubernetes, MySQL, MongoDB, Jenkins.</li>
</ul>
</li>
<li>
<h3>Senior Product Manager | Turkcell Global Bilgi | Istanbul, Turkey | Jan 2022 – Jul 2022</h3>
<p>Managed DevOps operations for critical applications and led chatbot development using robotic process automation (RPA).</p>
<ul>
<li><strong>Garanti BBA Banking Chatbot</strong>: Project management support, focusing on RPA coding and UI Path automation.</li>
<li>Technologies Used: Jenkins, Java, RedHat, MacOS, Jira, RPA (UI Path), Agile Methodologies.</li>
</ul>
</li>
<li>
<h3>Technical Lead | PortalGrup | Istanbul, Turkey | Aug 2018 – Jan 2022</h3>
<p>Led a team of 40+ members, including Frontend, Backend, and Mobile teams, working on high-traffic e-commerce platforms, mobile applications, and CMS development. Managed complex system integrations, payment systems, and marketplace connections while maintaining high code quality and adhering to SOLID principles.</p>
<ul>
<li><strong>KoçAilem</strong>: Loyalty application for Koç Holding employees and families, with 200K+ users.</li>
<li><strong>Fenerium E-Commerce Website</strong>: Developed an e-commerce platform for Fenerbahçe fans, focusing on personalized recommendations and payment integration.</li>
<li><strong>Fenerbahçe Sports Club (fenerbahce.org)</strong>: Led the development of the official website for Fenerbahçe Sports Club, providing live updates, membership information, and ticketing integration.</li>
<li><strong>Ford Turkey (ford.com.tr)</strong>: Managed the development of the official website for Ford Turkey, focusing on seamless navigation, car model display, and dealer locator functionality.</li>
<li><strong>Divan Group E-Commerce Website</strong>: Created the e-commerce platform for Divan Hotels and Divan Pastaneleri.</li>
<li><strong>E-DNA Android App</strong>: Developed E-DNA Android app for Eczacıbaşı, delivering educational content to healthcare professionals.</li>
<li>Implemented infrastructure and application installations on Azure DevOps IaaS (Infrastructure as a Service), managing server configurations and deployments across environments.</li>
<li>Migrated the entire system to Azure DevOps and built CI/CD pipelines for all environments (development, staging, production), ensuring automated deployments and continuous integration.</li>
<li>Technologies Used: Azure DevOps, IaaS, Pipelines, Kentico, Azure DevOps, MSSQL, Java, ASP.NET MVC, CMS, Agile Methodologies.</li>
</ul>
</li>
<li>
<h3>Senior Android Developer | PortalGrup | Mar 2016 – Aug 2018</h3>
<p>Developed Android applications for major clients like Bayer, focusing on event-based applications and gamification.</p>
<ul>
<li><strong>Zubizu QR Event App</strong>: Created a QR-based event application for seamless user experiences.</li>
<li><strong>Bayer Cropscience App</strong>: Developed Android solutions for agriculture and environmental management.</li>
<li><strong>E-DNA Android App</strong>: Delivered a comprehensive mobile platform for Eczacıbaşı, used in healthcare education.</li>
<li>Technologies Used: Android Development, Java, Kotlin, Mobile App Development.</li>
</ul>
</li>
</ul>
</div>
<!-- Previous Experience Section -->
<div class="previous-experience">
<h2>Previous Experience</h2>
<ul>
<li><strong>IT Project Manager & Software Developer</strong> | Meryüz Bilişim | Dec 2014 – Feb 2016: Led full lifecycle software projects, including server and Android development.</li>
<li><strong>Freelance Software Developer</strong> | Jul 2009 – Sep 2014: Developed backend and mobile systems using PHP, MySQL, and HTML/CSS.</li>
<li><strong>Intern</strong> | INDEX Group | Aug 2013 – Sep 2013: Internship in IT department at Index Group.</li>
</ul>
</div>
<style>
.description {
font-size: 12px; /* Make the description smaller */
color: #555; /* Grayish color for the description */
}
.inline-link {
color: #D27A22;
text-decoration: none;
}
.inline-link:hover {
text-decoration: underline;
}
</style>
<div class="projects">
<h2>Projects</h2>
<h3>WeFocus | Huawei | Jul 2022 – May 2023
<span class="description">
Developed a microservices-based employee engagement platform using Java, VueJS, MongoDB, PostgreSQL, Kubernetes, and Istio.
<strong> | Project Link: </strong>
<a href="https://huawei.com" class="inline-link">WeFocus</a>
</span>
</h3>
<ul>
<li>Skills Used: Kubernetes, Java, DevOps, Spring Boot, Product Lifecycle Management, People Management, Agile Methodologies.</li>
</ul>
<h3>KoçAilem | PortalGrup | Nov 2018 – Dec 2021
<span class="description">
Loyalty application for Koç Holding employees and families, serving 200K users.
<strong> | Project Link: </strong>
<a href="https://kocailem.com" class="inline-link">KoçAilem</a>
</span>
</h3>
<ul>
<li>Skills Used: C#, DevOps, Kentico, Product Lifecycle Management, People Management.</li>
</ul>
<h3>Fenerium E-Commerce Website
<span class="description">
Developed a robust e-commerce platform for Fenerbahçe S.K. fans, integrating payment systems and personalized recommendations.
<strong> | Project Link: </strong>
<a href="https://fenerium.com" class="inline-link">Fenerium</a>
</span>
</h3>
<ul>
<li>Skills Used: .NET, E-Commerce, Kentico, Product Lifecycle Management, Marketing Automation.</li>
</ul>
<h3>Avis Turkey E-Commerce Website
<span class="description">
Developed an optimized e-commerce car rental website for Avis Turkey.
<strong> | Project Link: </strong>
<a href="https://avis.com.tr" class="inline-link">Avis Turkey</a>
</span>
</h3>
<ul>
<li>Skills Used: E-Commerce, CMS, .NET.</li>
</ul>
<h3>Budget Turkey E-Commerce Website
<span class="description">
Built the official e-commerce platform for Budget Turkey’s car rental service.
<strong> | Project Link: </strong>
<a href="https://budget.com.tr" class="inline-link">Budget Turkey</a>
</span>
</h3>
<ul>
<li>Skills Used: E-Commerce, CMS, .NET.</li>
</ul>
<h3>Divan Group E-Commerce Website
<span class="description">
Developed the official e-commerce platform for Divan Group.
<strong> | Project Link: </strong>
<a href="https://divan.com.tr" class="inline-link">Divan Hotels</a>
</span>
</h3>
<ul>
<li>Skills Used: E-Commerce, CMS, .NET.</li>
</ul>
<h3>E-DNA Android App
<span class="description">
Developed the E-DNA Android app for Eczacıbaşı, focused on delivering educational content and resources to healthcare professionals.
</span>
</h3>
<ul>
<li>Skills Used: Android Development, Java, Mobile App Design.</li>
</ul>
<h3>ECZACIBAŞI İlaç Pazarlama Website
<span class="description">
Developed the official website for Eczacıbaşı İlaç Pazarlama.
<strong> | Project Link: </strong>
<a href="https://eczacibasiilac.com.tr" class="inline-link">Eczacıbaşı İlaç</a>
</span>
</h3>
<ul>
<li>Skills Used: .NET, Kentico, CMS.</li>
</ul>
<h3>KoçDigital Website
<span class="description">
Developed the official website for KoçDigital, an innovation-driven digital solutions company under Koç Holding.
<strong> | Project Link: </strong>
<a href="https://kocdigital.com" class="inline-link">KoçDigital</a>
</span>
</h3>
<ul>
<li>Skills Used: CMS, .NET.</li>
</ul>
<h3>KoçZer Website
<span class="description">
Developed the KoçZer official website, part of the Koç Group services.
<strong> | Project Link: </strong>
<a href="https://koczer.com" class="inline-link">KoçZer</a>
</span>
</h3>
<ul>
<li>Skills Used: CMS, .NET.</li>
</ul>
<h3>Imutor Website
<span class="description">
Developed the official website for Imutor, focusing on immune health solutions.
<strong> | Project Link: </strong>
<a href="https://www.imutor.com.tr" class="inline-link">Imutor</a>
</span>
</h3>
<ul>
<li>Skills Used: CMS, .NET.</li>
</ul>
<h3>Tat Website
<span class="description">
Developed the official website for Tat, a leading food production company in Turkey.
<strong> | Project Link: </strong>
<a href="https://www.tat.com.tr" class="inline-link">Tat</a>
</span>
</h3>
<ul>
<li>Skills Used: CMS, .NET.</li>
</ul>
<h3>KTSK (Koç Community Sports Club)
<span class="description">
Developed the official website for KTSK, Koç Holding’s community sports club.
<strong> | Project Link: </strong>
<a href="https://www.ktsk.com.tr" class="inline-link">KTSK</a>
</span>
</h3>
<ul>
<li>Skills Used: CMS, .NET.</li>
</ul>
<h3>TurkTraktor Websites
<span class="description">
Developed the official websites for TurkTraktor, including brands New Holland and Case IH.
<strong> | Project Links: </strong>
<a href="https://www.turktraktor.com.tr" class="inline-link">TurkTraktor</a>,
<a href="https://www.newholland.com.tr" class="inline-link">New Holland</a>,
<a href="https://www.caseih.com.tr" class="inline-link">Case IH</a>
</span>
</h3>
<ul>
<li>Skills Used: CMS, E-Commerce.</li>
</ul>
<h3>Koç Corporate Website
<span class="description">
Developed the official corporate website for Koç Holding.
<strong> | Project Link: </strong>
<a href="https://www.koc.com.tr" class="inline-link">Koç Corporate</a>
</span>
</h3>
<ul>
<li>Skills Used: CMS, .NET.</li>
</ul>
<h3>Selfit E-Commerce Website
<span class="description">
Developed the official e-commerce platform for Selfit, focusing on sports and fitness products.
<strong> | Project Link: </strong>
<a href="https://www.selfit.com.tr" class="inline-link">Selfit</a>
</span>
</h3>
<ul>
<li>Skills Used: E-Commerce, .NET, CMS.</li>
</ul>
<h3>Dynavit Website
<span class="description">
Developed the official website for Dynavit, providing health and wellness products.
<strong> | Project Link: </strong>
<a href="https://www.dynavit.com.tr" class="inline-link">Dynavit</a>
</span>
</h3>
<ul>
<li>Skills Used: CMS, E-Commerce, .NET.</li>
</ul>
<h3>Token E-Commerce Website
<span class="description">
Developed the official e-commerce platform for Token Inc., providing financial technology solutions.
<strong> | Project Link: </strong>
<a href="https://www.tokeninc.com" class="inline-link">Token</a>
</span>
</h3>
<ul>
<li>Skills Used: E-Commerce, CMS, .NET.</li>
</ul>
</div>
</div>
</div>
</body>
</html>