website/src/routes/+error.svelte

9 lines
150 B
Svelte
Raw Normal View History

2023-01-25 22:41:11 +05:30
<script>
2023-02-03 23:25:33 +05:30
import { page } from "$app/stores";
2022-12-27 20:58:47 +05:30
</script>
2023-01-25 22:41:11 +05:30
<h1>
{$page.status}
<p class="text-base font-normal mt-4">{$page.error?.message}</p>
2023-02-03 23:25:33 +05:30
</h1>