moved catchall route to app layout

pull/3/head
TZGyn 2 years ago
parent cecce351ee
commit 1c44bfb2a8
Signed by: TZGyn
GPG Key ID: 122EAF77AE81FD4A

@ -0,0 +1,14 @@
<script>
import { goto } from '$app/navigation'
import Button from '$lib/components/ui/button/button.svelte'
</script>
<div class="w-full h-full flex justify-center items-center">
<div class="flex flex-col gap-12 items-center">
<div class="flex flex-col gap-4 items-center">
<div class="text-4xl font-bold">404</div>
<div class="text-4xl font-bold">Page Not Found</div>
</div>
<Button on:click={() => goto('/')} class="w-fit">Return Home</Button>
</div>
</div>
Loading…
Cancel
Save