-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
91 lines (83 loc) · 3.44 KB
/
index.html
File metadata and controls
91 lines (83 loc) · 3.44 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
<!doctype html>
<html lang="en" class="h-full">
<head>
<meta charset="utf-8"/>
<title>Teun Schriks</title>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<!-- Tailwind via CDN (for quick use; for production use PostCSS or Svelte setup) -->
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-[#121212] text-white flex flex-col min-h-screen">
<main class="flex-grow py-10">
<div class="container mx-auto text-center px-4">
<h1 class="text-4xl md:text-5xl font-bold">Teun Schriks</h1>
<p class="text-lg text-gray-400 mt-2">Full stack developer</p>
</div>
<div class="container mx-auto px-4 py-12">
<h2 class="text-2xl md:text-3xl text-center mb-10">Ervaring</h2>
<div class="grid gap-6 md:grid-cols-2 lg:grid-cols-4">
<!-- Backend -->
<div class="bg-[#1f1f1f] p-6 rounded-lg shadow hover:shadow-xl transition hover:-translate-y-1">
<h5 class="text-white text-xl font-semibold mb-4">🖥️ Backend</h5>
<ul class="space-y-1">
<li>C</li>
<li>C++</li>
<li>Python</li>
<li>PHP</li>
<li>SQL</li>
</ul>
<div class="text-sm text-gray-400 mt-4">
Tooling: Node.js, Mutagen, librosa
</div>
</div>
<!-- Frontend -->
<div class="bg-[#1f1f1f] p-6 rounded-lg shadow hover:shadow-xl transition hover:-translate-y-1">
<h5 class="text-white text-xl font-semibold mb-4">💻 Frontend</h5>
<ul class="space-y-1">
<li>HTML</li>
<li>JavaScript</li>
<li>TypeScript</li>
<li>Svelte</li>
<li>Aurelia</li>
</ul>
<div class="text-sm text-gray-400 mt-4">
Tooling: Vite, TailwindCSS
</div>
</div>
<!-- Mobile -->
<div class="bg-[#1f1f1f] p-6 rounded-lg shadow hover:shadow-xl transition hover:-translate-y-1">
<h5 class="text-white text-xl font-semibold mb-4">📱 Mobile</h5>
<ul class="space-y-1">
<li>Android</li>
<li>Kotlin</li>
<li>Java</li>
</ul>
<div class="text-sm text-gray-400 mt-4">
Tooling: Android Studio, ADB
</div>
</div>
<!-- Infra -->
<div class="bg-[#1f1f1f] p-6 rounded-lg shadow hover:shadow-xl transition hover:-translate-y-1">
<h5 class="text-white text-xl font-semibold mb-4">🛠️ Infra & DevOps</h5>
<ul class="space-y-1">
<li>Docker</li>
<li>Docker Swarm</li>
<li>GitLab CI</li>
</ul>
<div class="text-sm text-gray-400 mt-4">
Tooling: pnpm, Git, Home Assistant
</div>
</div>
</div>
</div>
<div class="text-center mt-10">
<a href="https://www.linkedin.com/in/teunschriks/" target="_blank">
<img src="linkedin-logo-black.png" alt="LinkedIn" class="h-10 mx-auto"/>
</a>
</div>
</main>
<footer class="text-center py-4 text-gray-400 text-sm">
© Teun Schriks
</footer>
</body>
</html>