hhargreaves.net/src/components/notFound.svelte
Hayden Hargreaves 3623c48c54 FEAT: Created an error page and reformatted the 404 layout.
Looking much better and captures page errors almost anywhere.
2025-02-24 16:09:58 -07:00

11 lines
299 B
Svelte

<script lang="ts">
export let message: string;
</script>
<div class="my-[30%] flex h-full w-full flex-col items-center justify-center">
<h1 class="py-8 text-6xl font-semibold text-gray-300 italic opacity-30">404 - Not Found</h1>
<p class="text-sm text-gray-300 italic">
{message}
</p>
</div>