theme/layouts/404.html

23 lines
557 B
HTML

{{ define "main" }}
<section class="flex h-screen w-full flex-col items-center justify-center bg-yellow-200">
<h1 class="pb-8 font-title text-5xl font-bold">Page not found</h1>
<a href="/" class="flex items-center">
<svg
xmlns="http://www.w3.org/2000/svg"
class="mr-2 h-6 w-6"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M10 19l-7-7m0 0l7-7m-7 7h18"
/>
</svg>
Back to home page
</a>
</section>
{{ end }}