feat(main): add 404 page
This commit is contained in:
parent
072b936172
commit
62b34c9c48
1 changed files with 12 additions and 0 deletions
12
apps/main/src/routes/(app)/404/+page.svelte
Normal file
12
apps/main/src/routes/(app)/404/+page.svelte
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
<script>
|
||||||
|
import "$/routes/(app)/app.css"
|
||||||
|
|
||||||
|
import { page } from "$app/stores"
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<h1 class="mx-auto mt-10 text-center text-8xl font-normal">
|
||||||
|
{$page.status}
|
||||||
|
</h1>
|
||||||
|
<h2 class="mx-auto mt-6 text-center text-3xl font-normal">
|
||||||
|
{$page.error?.message}
|
||||||
|
</h2>
|
Loading…
Add table
Add a link
Reference in a new issue