-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (54 loc) · 2.56 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- SEO + descriptive stuff -->
<title>Yousable</title>
<meta name="description" content="Yousable - IT consultancy services">
<meta name="keywords"
content="Yousable Jelle Bouwman, Software Engineer, Front-end, Back-end, Full-stack, Utrecht, The Netherlands">
<meta name="author" content="Jelle Bouwman">
<!-- Facebook Meta Tags -->
<meta property="og:url" content="https://yousable.nl">
<meta property="og:type" content="website">
<meta property="og:title" content="Yousable">
<meta property="og:description" content="Yousable - IT consultancy services">
<meta property="og:image" content="https://yousable.nl/yousable-logo.webp">
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image">
<meta property="twitter:domain" content="yousable.nl">
<meta property="twitter:url" content="https://yousable.nl">
<meta name="twitter:title" content="Yousable">
<meta name="twitter:description" content="Yousable - IT consultancy services">
<meta name="twitter:image" content="https://jellebouwman.nl/yousable-logo.webp">
<link rel="icon" href="/favicon.ico" sizes="any">
<link rel="icon" href="/favicon.svg" type="image/svg+xml">
<!-- Some external resources I like -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- Styles -->
<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@300&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Inter', sans-serif;
}
</style>
</head>
<body class="min-h-screen dark:bg-indigo-900 bg-gray-200 dark:text-white">
<main class="container max-w-md mx-auto pt-20 pb-10 flex flex-col gap-4">
<div>
<img src="/yousable-logo.svg" alt="Yousable logo" class="dark:hidden mx-auto w-1/2">
<img src="/yousable-logo-white.svg" alt="Alternate white Yousable logo" class="hidden dark:block mx-auto w-1/2">
</div>
<h1 class="text-center text-lg font-bold">IT consultancy services by <a class="text-blue-500 hover:underline"
href="https://jellebouwman.nl" target="_blank">Jelle Bouwman</a></h1>
<div class="font-mono flex flex-col gap-2 text-center text-sm mt-8">
<p>COC: 82437289</p>
<p>VAT: NL003680549B50</p>
<p>Contact <a class="font-mono" href="mailto:[email protected]">jelle [at] yousable.nl</a>
</div>
</main>
</body>
</html>