mirror of
https://tangled.org/evan.jarrett.net/at-container-registry
synced 2026-08-31 13:17:09 +00:00
26 lines
914 B
HTML
26 lines
914 B
HTML
{{ define "404" }}
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
{{ template "head" . }}
|
|
{{ template "meta" .Meta }}
|
|
</head>
|
|
<body>
|
|
{{ template "nav-simple" . }}
|
|
<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 }}
|