Files

26 lines
969 B
HTML

{{ define "404" }}
<!DOCTYPE html>
<html lang="en">
<head>
{{ template "head" . }}
{{ template "meta" .Meta }}
</head>
<body>
{{ if .User }}{{ template "nav" . }}{{ else }}{{ template "nav-simple" . }}{{ end }}
<main id="main-content" class="hero min-h-[60vh]">
<div class="hero-content text-center">
<div class="flex flex-col items-center">
{{ icon "anchor" "size-16 text-neutral mb-4" }}
<div class="font-display font-bold text-primary leading-none tabular-nums" style="font-size: clamp(5rem, 18vw, 10rem);">404</div>
<h1 class="text-2xl font-semibold mt-4">Lost at Sea</h1>
<p class="text-base-content/60 mt-2 max-w-md">The page you're looking for has drifted into uncharted waters.</p>
<a href="/" class="btn btn-primary mt-6">Return to Port</a>
</div>
</div>
</main>
{{ template "footer" . }}
</body>
</html>
{{ end }}