Files
f5597ad6-c686-4a06-abaf-547…/src/routes.ts
2026-06-22 19:29:42 +00:00

11 lines
238 B
TypeScript

export interface Route {
path: string;
label: string;
pageFile: string;
}
export const routes: Route[] = [
{ path: '/', label: 'Home', pageFile: 'HomePage' },
{ path: '/pricing', label: 'Pricing', pageFile: 'PricingPage' },
];