Initial commit

This commit is contained in:
kudinDmitriyUp
2026-06-01 13:31:12 +00:00
commit cb9e88e0fb
302 changed files with 36561 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' },
];