-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
91 lines (87 loc) · 3.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Can Soylu - Personal Website" />
<title>Can Soylu</title>
<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=Inter:wght@400;500;600;700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="styles.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"
/>
</head>
<body>
<div class="container">
<section class="hero">
<a href="mailto:[email protected]" class="profile-image">
<img src="profile.jpeg" alt="Can Soylu" loading="lazy" />
</a>
<div class="hero-content">
<h1>Can Soylu</h1>
<h2>Software Engineer</h2>
<div class="social-links">
<a
href="https://linkedin.com/in/cansoylu"
target="_blank"
rel="noopener noreferrer"
aria-label="LinkedIn Profile"
>
<i class="fab fa-linkedin"></i>
</a>
<a href="mailto:[email protected]" aria-label="Email Contact">
<i class="fas fa-envelope"></i>
</a>
</div>
</div>
</section>
<section class="content">
<div class="about">
<h3>Who am I?</h3>
<p>
Hey, I'm Can. I'm a developer passionate about solving solutions and providing value. I believe in writing simple, coherent code that stands the test of time.
</p>
<p>
Currently, I'm leading the frontend team at
<a
href="https://www.linkedin.com/company/freshmile/"
target="_blank"
rel="noopener noreferrer"
aria-label="Freshmile"
>Freshmile</a>. I focus on product development while guiding our team through technical decisions, always trying to lead by example.
</p>
<h4>Open Source</h4>
<p>
I'm an active contributor to the open source community. I've made contributions to projects like Proxmox, SPIFFE/SPIRE, and various Docker products.
</p>
</div>
<h4>What I Love Working With</h4>
<div class="skill-tags">
<span>TypeScript</span>
<span class="separator">|</span>
<span>Go</span>
<span class="separator">|</span>
<span>Networks & Systems</span>
</div>
</section>
<footer>
<p>
I stream my open-source development work on
<a
href="https://twitch.tv/fransizjean"
target="_blank"
rel="noopener noreferrer"
aria-label="Twitch Profile"
><i class="fab fa-twitch"></i> Twitch</a
>
</p>
</footer>
</div>
</body>
</html>