Pitch takes the verified profile, metrics and public cases off Home so `/` can speak to small companies in plain language. The Systems Map now sits on the services overview, and both locales stay table-driven. Co-authored-by: Cursor <cursoragent@cursor.com>
33 lines
514 B
TypeScript
33 lines
514 B
TypeScript
export type RouteId =
|
|
| 'home'
|
|
| 'pitch'
|
|
| 'services'
|
|
| 'servicesSoftware'
|
|
| 'servicesHardwareNetwork'
|
|
| 'servicesClusters'
|
|
| 'servicesAi'
|
|
| 'projects'
|
|
| 'stack'
|
|
| 'about'
|
|
| 'contact'
|
|
| 'imprint'
|
|
| 'privacy'
|
|
| 'notFound';
|
|
|
|
export const ROUTE_IDS: readonly RouteId[] = [
|
|
'home',
|
|
'pitch',
|
|
'services',
|
|
'servicesSoftware',
|
|
'servicesHardwareNetwork',
|
|
'servicesClusters',
|
|
'servicesAi',
|
|
'projects',
|
|
'stack',
|
|
'about',
|
|
'contact',
|
|
'imprint',
|
|
'privacy',
|
|
'notFound',
|
|
];
|