fix: normalize heading font weights and replace hardcoded colors with css variables

This commit is contained in:
2026-05-08 12:26:37 +02:00
parent b6ccef7743
commit 620ebc0b6c
14 changed files with 94 additions and 94 deletions

View File

@@ -1,7 +1,7 @@
{{define "title"}}Not Found{{end}}
{{define "content"}}
<div class="text-center py-20">
<h2 class="text-4xl font-bold mb-4">404</h2>
<p class="text-xl text-gray-400">Page not found</p>
<h2 class="text-4xl font-normal mb-4">404</h2>
<p class="text-xl text-foreground-muted">Page not found</p>
</div>
{{end}}