main
svelte 17 lines 489 Bytes
Raw
1 <script lang="ts">
2 import { page } from '$app/stores';
3 import { base } from '$app/paths';
4 </script>
5
6 <div class="py-16 text-center">
7 <h1 class="text-4xl font-bold text-gray-900 dark:text-white">{$page.status}</h1>
8 <p class="mt-4 text-lg text-gray-600 dark:text-gray-400">
9 {$page.error?.message || 'Page not found'}
10 </p>
11 <a
12 href="{base}/"
13 class="mt-8 inline-block rounded-lg bg-blue-600 px-6 py-3 text-sm font-medium text-white hover:bg-blue-700"
14 >
15 Back to Home
16 </a>
17 </div>