404.html
11 lines1
2
3
4
5
6
7
8
9
10
11
{{template "main.html" .}}
{{define "title"}}Not Found — Congo{{end}}
{{define "content"}}
<div class="max-w-3xl mx-auto px-6 py-24 text-center">
<h1 class="text-6xl font-bold tracking-tight text-muted mb-4">404</h1>
<p class="text-body text-base mb-8">This page doesn't exist.</p>
<a href="/" class="btn-glow" hx-boost="true">Go Home</a>
</div>
{{end}}