blakerain.com/layouts/404.html

12 lines
431 B
HTML

{{ define "main" }}
<main class="container mx-auto my-8 lg:my-12 flex flex-col items-center gap-4 lg:gap-8">
<h1 class="text-8xl font-bold mb-4 lg:mb-8">404</h1>
<h1 class="text-2xl font-semibold">Page not found</h1>
<p>
The page you are looking for might have been removed, had its name changed, or is temporarily
unavailable.
</p>
<a class="button" href="/">Back to Home</a>
</main>
{{ end }}