Initial commit

This commit is contained in:
dk
2026-06-21 00:06:53 +00:00
commit a83d7ca7fe
313 changed files with 37566 additions and 0 deletions

9
src/routes.ts Normal file
View File

@@ -0,0 +1,9 @@
export interface Route {
path: string;
label: string;
pageFile: string;
}
export const routes: Route[] = [
{ path: '/', label: 'Home', pageFile: 'HomePage' },
];