mirror of
https://github.com/pesde-pkg/pesde.git
synced 2025-03-04 19:21:42 +00:00
9 lines
241 B
Svelte
9 lines
241 B
Svelte
![]() |
<script>
|
||
|
import { page } from "$app/stores"
|
||
|
</script>
|
||
|
|
||
|
<div class="mx-auto max-w-screen-xl px-4 py-32 text-center">
|
||
|
<h1 class="text-heading mb-1 text-4xl font-bold">{$page.status}</h1>
|
||
|
<p class="text-lg">{$page.error?.message}</p>
|
||
|
</div>
|