Skip to content

Commit 49debd5

Browse files
committed
feat: update bio and enhance typography
- Updated bio on the "Over Mij" page to include "Co-Host JCast." - Added custom font families ("Work Sans," "Inter," and "JetBrains Mono") for improved typography. - Integrated Google Fonts in the head for seamless font loading.
1 parent 3ab14cc commit 49debd5

3 files changed

Lines changed: 24 additions & 1 deletion

File tree

content/over-mij/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<div class="flex flex-col items-center gap-4 sm:items-start">
1919
<div class="space-y-2">
2020
<h1 class="text-3xl font-semibold text-slate-900 dark:text-slate-100">Maarten Casteels</h1>
21-
<p class="text-base text-slate-600 dark:text-slate-300">Tech lead · Java architect · Consultant</p>
21+
<p class="text-base text-slate-600 dark:text-slate-300">Tech lead &middot; Java architect &middot; Consultant &middot; Co-Host JCast</p>
2222
</div>
2323

2424
<nav aria-label="Profielen" class="flex flex-wrap justify-center gap-3 pt-1 sm:justify-start">

themes/custom/assets/css/main.css

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,26 @@
3535
}
3636

3737
@layer base {
38+
body {
39+
font-family: "Work Sans", sans-serif;
40+
}
41+
42+
h1,
43+
h2,
44+
h3,
45+
h4,
46+
h5,
47+
h6 {
48+
font-family: "Inter", sans-serif;
49+
}
50+
51+
code,
52+
pre,
53+
kbd,
54+
samp {
55+
font-family: "JetBrains Mono", monospace;
56+
}
57+
3858
button {
3959
cursor: pointer;
4060
}

themes/custom/layouts/partials/head.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,9 @@
4848
<link rel="shortcut icon" href="/favicon.ico">
4949
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
5050
<link rel="manifest" href="/site.webmanifest">
51+
<link rel="preconnect" href="https://fonts.googleapis.com">
52+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
53+
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600&family=Work+Sans:wght@400;500;600;700&display=swap" rel="stylesheet">
5154
{{ template "_internal/opengraph.html" . }}
5255
{{ template "_internal/twitter_cards.html" . }}
5356
{{ partial "schema-jsonld.html" . }}

0 commit comments

Comments
 (0)