| |
|
|
| |
|
|
| |
|
|
| |
| |
| |
|
|
| import { Route as rootRouteImport } from './routes/__root' |
| import { Route as WhySafesightRouteImport } from './routes/why-safesight' |
| import { Route as TermsRouteImport } from './routes/terms' |
| import { Route as SitemapDotxmlRouteImport } from './routes/sitemap[.]xml' |
| import { Route as PrivacyRouteImport } from './routes/privacy' |
| import { Route as PricingRouteImport } from './routes/pricing' |
| import { Route as HowItWorksRouteImport } from './routes/how-it-works' |
| import { Route as DownloadRouteImport } from './routes/download' |
| import { Route as ContactRouteImport } from './routes/contact' |
| import { Route as AboutRouteImport } from './routes/about' |
| import { Route as IndexRouteImport } from './routes/index' |
|
|
| const WhySafesightRoute = WhySafesightRouteImport.update({ |
| id: '/why-safesight', |
| path: '/why-safesight', |
| getParentRoute: () => rootRouteImport, |
| } as any) |
| const TermsRoute = TermsRouteImport.update({ |
| id: '/terms', |
| path: '/terms', |
| getParentRoute: () => rootRouteImport, |
| } as any) |
| const SitemapDotxmlRoute = SitemapDotxmlRouteImport.update({ |
| id: '/sitemap.xml', |
| path: '/sitemap.xml', |
| getParentRoute: () => rootRouteImport, |
| } as any) |
| const PrivacyRoute = PrivacyRouteImport.update({ |
| id: '/privacy', |
| path: '/privacy', |
| getParentRoute: () => rootRouteImport, |
| } as any) |
| const PricingRoute = PricingRouteImport.update({ |
| id: '/pricing', |
| path: '/pricing', |
| getParentRoute: () => rootRouteImport, |
| } as any) |
| const HowItWorksRoute = HowItWorksRouteImport.update({ |
| id: '/how-it-works', |
| path: '/how-it-works', |
| getParentRoute: () => rootRouteImport, |
| } as any) |
| const DownloadRoute = DownloadRouteImport.update({ |
| id: '/download', |
| path: '/download', |
| getParentRoute: () => rootRouteImport, |
| } as any) |
| const ContactRoute = ContactRouteImport.update({ |
| id: '/contact', |
| path: '/contact', |
| getParentRoute: () => rootRouteImport, |
| } as any) |
| const AboutRoute = AboutRouteImport.update({ |
| id: '/about', |
| path: '/about', |
| getParentRoute: () => rootRouteImport, |
| } as any) |
| const IndexRoute = IndexRouteImport.update({ |
| id: '/', |
| path: '/', |
| getParentRoute: () => rootRouteImport, |
| } as any) |
|
|
| export interface FileRoutesByFullPath { |
| '/': typeof IndexRoute |
| '/about': typeof AboutRoute |
| '/contact': typeof ContactRoute |
| '/download': typeof DownloadRoute |
| '/how-it-works': typeof HowItWorksRoute |
| '/pricing': typeof PricingRoute |
| '/privacy': typeof PrivacyRoute |
| '/sitemap.xml': typeof SitemapDotxmlRoute |
| '/terms': typeof TermsRoute |
| '/why-safesight': typeof WhySafesightRoute |
| } |
| export interface FileRoutesByTo { |
| '/': typeof IndexRoute |
| '/about': typeof AboutRoute |
| '/contact': typeof ContactRoute |
| '/download': typeof DownloadRoute |
| '/how-it-works': typeof HowItWorksRoute |
| '/pricing': typeof PricingRoute |
| '/privacy': typeof PrivacyRoute |
| '/sitemap.xml': typeof SitemapDotxmlRoute |
| '/terms': typeof TermsRoute |
| '/why-safesight': typeof WhySafesightRoute |
| } |
| export interface FileRoutesById { |
| __root__: typeof rootRouteImport |
| '/': typeof IndexRoute |
| '/about': typeof AboutRoute |
| '/contact': typeof ContactRoute |
| '/download': typeof DownloadRoute |
| '/how-it-works': typeof HowItWorksRoute |
| '/pricing': typeof PricingRoute |
| '/privacy': typeof PrivacyRoute |
| '/sitemap.xml': typeof SitemapDotxmlRoute |
| '/terms': typeof TermsRoute |
| '/why-safesight': typeof WhySafesightRoute |
| } |
| export interface FileRouteTypes { |
| fileRoutesByFullPath: FileRoutesByFullPath |
| fullPaths: |
| | '/' |
| | '/about' |
| | '/contact' |
| | '/download' |
| | '/how-it-works' |
| | '/pricing' |
| | '/privacy' |
| | '/sitemap.xml' |
| | '/terms' |
| | '/why-safesight' |
| fileRoutesByTo: FileRoutesByTo |
| to: |
| | '/' |
| | '/about' |
| | '/contact' |
| | '/download' |
| | '/how-it-works' |
| | '/pricing' |
| | '/privacy' |
| | '/sitemap.xml' |
| | '/terms' |
| | '/why-safesight' |
| id: |
| | '__root__' |
| | '/' |
| | '/about' |
| | '/contact' |
| | '/download' |
| | '/how-it-works' |
| | '/pricing' |
| | '/privacy' |
| | '/sitemap.xml' |
| | '/terms' |
| | '/why-safesight' |
| fileRoutesById: FileRoutesById |
| } |
| export interface RootRouteChildren { |
| IndexRoute: typeof IndexRoute |
| AboutRoute: typeof AboutRoute |
| ContactRoute: typeof ContactRoute |
| DownloadRoute: typeof DownloadRoute |
| HowItWorksRoute: typeof HowItWorksRoute |
| PricingRoute: typeof PricingRoute |
| PrivacyRoute: typeof PrivacyRoute |
| SitemapDotxmlRoute: typeof SitemapDotxmlRoute |
| TermsRoute: typeof TermsRoute |
| WhySafesightRoute: typeof WhySafesightRoute |
| } |
|
|
| declare module '@tanstack/react-router' { |
| interface FileRoutesByPath { |
| '/why-safesight': { |
| id: '/why-safesight' |
| path: '/why-safesight' |
| fullPath: '/why-safesight' |
| preLoaderRoute: typeof WhySafesightRouteImport |
| parentRoute: typeof rootRouteImport |
| } |
| '/terms': { |
| id: '/terms' |
| path: '/terms' |
| fullPath: '/terms' |
| preLoaderRoute: typeof TermsRouteImport |
| parentRoute: typeof rootRouteImport |
| } |
| '/sitemap.xml': { |
| id: '/sitemap.xml' |
| path: '/sitemap.xml' |
| fullPath: '/sitemap.xml' |
| preLoaderRoute: typeof SitemapDotxmlRouteImport |
| parentRoute: typeof rootRouteImport |
| } |
| '/privacy': { |
| id: '/privacy' |
| path: '/privacy' |
| fullPath: '/privacy' |
| preLoaderRoute: typeof PrivacyRouteImport |
| parentRoute: typeof rootRouteImport |
| } |
| '/pricing': { |
| id: '/pricing' |
| path: '/pricing' |
| fullPath: '/pricing' |
| preLoaderRoute: typeof PricingRouteImport |
| parentRoute: typeof rootRouteImport |
| } |
| '/how-it-works': { |
| id: '/how-it-works' |
| path: '/how-it-works' |
| fullPath: '/how-it-works' |
| preLoaderRoute: typeof HowItWorksRouteImport |
| parentRoute: typeof rootRouteImport |
| } |
| '/download': { |
| id: '/download' |
| path: '/download' |
| fullPath: '/download' |
| preLoaderRoute: typeof DownloadRouteImport |
| parentRoute: typeof rootRouteImport |
| } |
| '/contact': { |
| id: '/contact' |
| path: '/contact' |
| fullPath: '/contact' |
| preLoaderRoute: typeof ContactRouteImport |
| parentRoute: typeof rootRouteImport |
| } |
| '/about': { |
| id: '/about' |
| path: '/about' |
| fullPath: '/about' |
| preLoaderRoute: typeof AboutRouteImport |
| parentRoute: typeof rootRouteImport |
| } |
| '/': { |
| id: '/' |
| path: '/' |
| fullPath: '/' |
| preLoaderRoute: typeof IndexRouteImport |
| parentRoute: typeof rootRouteImport |
| } |
| } |
| } |
|
|
| const rootRouteChildren: RootRouteChildren = { |
| IndexRoute: IndexRoute, |
| AboutRoute: AboutRoute, |
| ContactRoute: ContactRoute, |
| DownloadRoute: DownloadRoute, |
| HowItWorksRoute: HowItWorksRoute, |
| PricingRoute: PricingRoute, |
| PrivacyRoute: PrivacyRoute, |
| SitemapDotxmlRoute: SitemapDotxmlRoute, |
| TermsRoute: TermsRoute, |
| WhySafesightRoute: WhySafesightRoute, |
| } |
| export const routeTree = rootRouteImport |
| ._addFileChildren(rootRouteChildren) |
| ._addFileTypes<FileRouteTypes>() |
|
|
| import type { getRouter } from './router.tsx' |
| import type { startInstance } from './start.ts' |
| declare module '@tanstack/react-start' { |
| interface Register { |
| ssr: true |
| router: Awaited<ReturnType<typeof getRouter>> |
| config: Awaited<ReturnType<typeof startInstance.getOptions>> |
| } |
| } |
|
|