Error page

This commit is contained in:
Donatas Kirda 2024-05-10 10:54:18 +03:00
parent b9960a561c
commit 746e2de2b3
Signed by: bloodwiing
GPG Key ID: 63020D8D3F4A164F

7
src/routes/+error.svelte Normal file
View File

@ -0,0 +1,7 @@
<script>
import { page } from "$app/stores";
</script>
<h1>Error</h1>
<h3>{$page.status}</h3>
<p>{$page.error?.message}</p>