fix: 404 page
continuous-integration/drone/push Build is passing Details

This commit is contained in:
kolaente 2022-01-29 18:21:02 +01:00
parent a77a82c3da
commit 47361e9263
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 9 additions and 4 deletions

View File

@ -1,8 +1,13 @@
{{ partial "header.html" . }}
<section class="w-screen h-screen bg-yellow-200 flex items-center justify-center">
<h1 class="font-title pb-8 text-4xl font-bold">
Not found
<section class="w-screen h-screen bg-yellow-200 flex items-center justify-center flex-row">
<h1 class="font-title pb-8 text-5xl font-bold">
Page not found
</h1>
<a href="/">Back to home page</a>
<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>