404.html

16 lines
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
{{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-10">This page doesn't exist. It may have moved.</p>
    <div class="flex flex-wrap gap-3 justify-center" hx-boost="true">
        <a href="/" class="btn-glow btn-glow-primary">Home</a>
        <a href="/framework" class="btn-glow">Framework</a>
        <a href="/workspace" class="btn-glow">Workspace</a>
        <a href="/source" class="btn-glow">Source</a>
    </div>
</div>
{{end}}