theme/layouts/404.html

14 lines
508 B
HTML

{{ partial "header.html" . }}
<section class="w-screen h-screen bg-yellow-200 flex items-center justify-center flex-col">
<h1 class="font-title pb-8 text-5xl font-bold">
Page not found
</h1>
<a href="/" class="flex items-center">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 mr-2" 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>