-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (82 loc) · 3.35 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
<!doctype html>
<html lang="en" class="dark:bg-zinc-950">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="theme-color"
content="#09090B"
media="(prefers-color-scheme: light)"
/>
<meta
name="theme-color"
content="#000000"
media="(prefers-color-scheme: dark)"
/>
<meta name="author" content="Jakub Leško" />
<meta name="description" content="Full stack developer" />
<meta property="og:url" content="https://jakublesko.com" />
<meta property="og:title" content="Jakub Leško" />
<meta property="og:description" content="Full stack developer" />
<meta property="og:image" content="/thumbnail.png" />
<link rel="icon" type="image/png" href="/favicon-196.png" sizes="196x196" />
<link rel="icon" type="image/png" href="/favicon-128.png" sizes="128x128" />
<link rel="icon" type="image/png" href="/favicon-96.png" sizes="96x96" />
<link rel="icon" type="image/png" href="/favicon-32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="/favicon-16.png" sizes="16x16" />
<link rel="stylesheet" type="text/css" href="/index.css" />
<title>Jakub Leško</title>
</head>
<body class="mx-auto max-w-screen-sm px-8 py-4">
<main class="flex flex-col gap-16 pt-32">
<header class="flex flex-col leading-relaxed">
<h1 class="text-xl font-bold text-zinc-800 dark:text-zinc-200">
Jakub Leško
</h1>
<p class="text-zinc-600 dark:text-zinc-400">Full stack developer</p>
</header>
<section class="flex flex-col items-start gap-4">
<h2 class="font-bold text-zinc-800 dark:text-zinc-200">Work</h2>
<a
href="https://github.com/kubadlo"
rel="noopener noreferrer"
target="_blank"
class="flex flex-row items-center gap-1 text-zinc-600 transition-colors duration-75 ease-in-out hover:text-sky-600 dark:text-zinc-300"
>
<span class="hover:underline">GitHub</span>
<span>↗</span>
</a>
<a
href="https://www.linkedin.com/in/jakublesko/"
rel="noopener noreferrer"
target="_blank"
class="flex flex-row items-center gap-1 text-zinc-600 transition-colors duration-75 ease-in-out hover:text-sky-600 dark:text-zinc-300"
>
<span class="hover:underline">LinkedIn</span>
<span>↗</span>
</a>
</section>
<section class="flex flex-col items-start gap-4">
<h2 class="font-bold text-zinc-800 dark:text-zinc-200">Social</h2>
<a
href="https://mastodon.social/@kubadlo"
rel="noopener noreferrer me"
target="_blank"
class="flex flex-row items-center gap-1 text-zinc-600 transition-colors duration-75 ease-in-out hover:text-sky-600 dark:text-zinc-300"
>
<span class="hover:underline">Mastodon</span>
<span>↗</span>
</a>
<a
href="https://twitter.com/kubadlo"
rel="noopener noreferrer"
target="_blank"
class="flex flex-row items-center gap-1 text-zinc-600 transition-colors duration-75 ease-in-out hover:text-sky-600 dark:text-zinc-300"
>
<span class="hover:underline">Twitter</span>
<span>↗</span>
</a>
</section>
</main>
</body>
</html>