FEAT: notFound on about page
This commit is contained in:
parent
b6d647ecef
commit
c297cda172
7
src/components/notFound.svelte
Normal file
7
src/components/notFound.svelte
Normal 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>
|
||||||
@ -1,8 +1,6 @@
|
|||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import '../../app.css';
|
import '../../app.css';
|
||||||
import Navbar from '../../components/navbar.svelte';
|
|
||||||
let { children } = $props();
|
let { children } = $props();
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<!-- <Navbar /> -->
|
|
||||||
{@render children()}
|
{@render children()}
|
||||||
|
|||||||
@ -0,0 +1,5 @@
|
|||||||
|
<script lang="ts">
|
||||||
|
import NotFound from '../../components/notFound.svelte';
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<NotFound />
|
||||||
Loading…
x
Reference in New Issue
Block a user