Files
3d924965-eb8a-4ce5-b1f9-d40…/src/routes.ts
2026-06-25 06:40:00 +00:00

11 lines
250 B
TypeScript

export interface Route {
path: string;
label: string;
pageFile: string;
}
export const routes: Route[] = [
{ path: '/', label: 'Home', pageFile: 'HomePage' },
{ path: '/datenschutz', label: 'Datenschutz', pageFile: 'DatenschutzPage' },
];