Initial commit

This commit is contained in:
2025-07-08 16:24:50 -06:00
commit 3eb68e54a9
26 changed files with 4796 additions and 0 deletions

11
src/routes/+error.svelte Normal file
View File

@ -0,0 +1,11 @@
<script>
import { page } from '$app/state';
console.log(page.status);
</script>
<div>
<h1>{page.status} Page not found</h1>
<p>We are terribly sorry, but the page you requested doesn't exist.</p>
<a href="/"><button>Return Home Here</button></a>
</div>