-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
87 lines (66 loc) · 3.68 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-FFP9ZVWTJ0"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-FFP9ZVWTJ0');
</script>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
<script src="https://kit.fontawesome.com/ddc277417a.js" crossorigin="anonymous"></script>
<script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/cdn.min.js"></script>
<title>Tomáš Zaharowski - online CV</title>
</head>
<body>
<header class="flex items-center justify-center p-8 border-b border-gray-400 lg:w-2/3 mx-auto">
<nav class="space-x-8">
<a class="hover:underline" href="/assets/cv_tomas_zaharowski.pdf">Stáhnout životopis</a>
</nav>
</header>
<main class="lg:container mx-auto lg:w-2/3">
<h1 class="text-center text-gray-600 font-bold text-xl my-8">Ahoj 👋🏻 jsem Tomáš a vítám vás tady! </h1>
<p class="text-center mx-aut p-4 lg:p-8 text-gray-500 mb-8">
Jsem nadšenec do vývoje produktu od návrhu až po implementaci. <br> <br>
Mým cílem je vytvářet digitální produkty, které jsou intuitivní, esteticky příjemné a snadno použitelné. V
portfoliu najdete ukázky mých projektů včetně náhledů na výsledné produkty a popisů procesu návrhu.
<br><br>
Doufám, že vás mé práce osloví a těším se na spolupráci!
</>
<div class="w-full flex justify-center py-8">
<a href="https://github.com/zahista" target="_blank" class="mx-auto">
<button
class="transition-transform transform hover:scale-105 hover:bg-green-500 text-lg font-bold py-2 px-4 text-white bg-green-600 shadow-sm hover:shadow-xl rounded-lg">
<i class="bi bi-github"></i> Přejít na GitHub
</button>
</a>
</div>
<div class="grid grid-cols-1 lg:grid-cols-2 gap-4 lg:px-16">
<div class="relative" x-data="{showOverlay: false}" @mouseover="showOverlay = true"
@mouseout="showOverlay = false">
<img src="/assets/PixelBook Go.png" alt="" class=" bg-blue-50 p-8 rounded-lg">
<a href="liveboard.html" x-show="showOverlay" href="seznam.cz" x-transition.duration.500ms
class="w-full h-full bg-gray-900 bg-opacity-70 absolute top-0 left-0 flex items-center justify-center text-white text-4xl font-bold rounded-lg z-10">
Liveboard
</a>
</div>
<div class="relative" x-data="{showOverlay: false}" @mouseover="showOverlay = true"
@mouseout="showOverlay = false">
<img src="/assets/mock_ucebny.png" alt="" class=" bg-green-50 p-8 rounded-lg">
<a href="ucebny.html" x-show="showOverlay" href="seznam.cz" x-transition.duration.500ms
class="w-full h-full bg-gray-900 bg-opacity-70 absolute top-0 left-0 flex items-center justify-center text-white text-4xl font-bold rounded-lg z-10">
Rezervační portál
</a>
</div>
</div>
</main>
<footer class="h-96">
</footer>
</body>
</html>