Files
ab9a3f06-2ef8-4c93-b058-1cd…/src/routes.ts
2026-06-22 07:35:08 +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' },
];