FEAT: notFound on about page

This commit is contained in:
Hayden Hargreaves 2025-02-20 21:39:02 -07:00
parent b6d647ecef
commit c297cda172
3 changed files with 12 additions and 2 deletions

View File

@ -0,0 +1,7 @@
<main class="flex min-h-screen 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">
Just kidding, I did find it. But it's not ready for you to see just yet. Sit tight, I'm working
on it.
</p>
</main>

View File

@ -1,8 +1,6 @@
<script lang="ts">
import '../../app.css';
import Navbar from '../../components/navbar.svelte';
let { children } = $props();
</script>
<!-- <Navbar /> -->
{@render children()}

View File

@ -0,0 +1,5 @@
<script lang="ts">
import NotFound from '../../components/notFound.svelte';
</script>
<NotFound />