You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
431 B

<script>
import Navbar from "$lib/header/Navbar.svelte";
</script>
<main class="flex flex-col gap-5">
<Navbar page="error" />
<section class="container bg-gray-800 rounded-lg shadow-lg p-5 flex flex-col gap-5">
<h1 class="text-xl font-bold">
Unexpected Error!
</h1>
<hr/>
<p class="text-lg">
You probably have the wrong page.
</p>
</section>
</main>