part of skeleton

This commit is contained in:
Jonas_Jones 2024-06-07 00:26:22 +02:00
parent b550b19aae
commit 68f6de3e11
24 changed files with 2375 additions and 119 deletions

10
src/routes.ts Normal file
View file

@ -0,0 +1,10 @@
import Home from './routes/Home.svelte';
import Lorem from './routes/Lorem.svelte';
import NotFound from './routes/NotFound.svelte';
export default {
'/': Home,
'/lorem/:repeat': Lorem,
// The catch-all route must always be last
'*': NotFound
};