1010
1111import { Route as rootRouteImport } from './routes/__root'
1212import { Route as UpdatePasswordRouteImport } from './routes/update-password'
13+ import { Route as TermsRouteImport } from './routes/terms'
1314import { Route as ResetPasswordRouteImport } from './routes/reset-password'
15+ import { Route as PrivacyRouteImport } from './routes/privacy'
1416import { Route as FoundersRouteImport } from './routes/founders'
1517import { Route as AuthRouteImport } from './routes/auth'
1618import { Route as ViewRouteRouteImport } from './routes/_view/route'
1719import { Route as IndexRouteImport } from './routes/index'
1820import { Route as ChangelogIndexRouteImport } from './routes/changelog/index'
1921import { Route as BlogIndexRouteImport } from './routes/blog/index'
20- import { Route as LegalSlugRouteImport } from './routes/legal/$slug'
2122import { Route as ChangelogVersionRouteImport } from './routes/changelog/$version'
2223import { Route as BlogSlugRouteImport } from './routes/blog/$slug'
2324import { Route as ApiTemplatesRouteImport } from './routes/api/templates'
@@ -80,11 +81,21 @@ const UpdatePasswordRoute = UpdatePasswordRouteImport.update({
8081 path : '/update-password' ,
8182 getParentRoute : ( ) => rootRouteImport ,
8283} as any )
84+ const TermsRoute = TermsRouteImport . update ( {
85+ id : '/terms' ,
86+ path : '/terms' ,
87+ getParentRoute : ( ) => rootRouteImport ,
88+ } as any )
8389const ResetPasswordRoute = ResetPasswordRouteImport . update ( {
8490 id : '/reset-password' ,
8591 path : '/reset-password' ,
8692 getParentRoute : ( ) => rootRouteImport ,
8793} as any )
94+ const PrivacyRoute = PrivacyRouteImport . update ( {
95+ id : '/privacy' ,
96+ path : '/privacy' ,
97+ getParentRoute : ( ) => rootRouteImport ,
98+ } as any )
8899const FoundersRoute = FoundersRouteImport . update ( {
89100 id : '/founders' ,
90101 path : '/founders' ,
@@ -114,11 +125,6 @@ const BlogIndexRoute = BlogIndexRouteImport.update({
114125 path : '/blog/' ,
115126 getParentRoute : ( ) => rootRouteImport ,
116127} as any )
117- const LegalSlugRoute = LegalSlugRouteImport . update ( {
118- id : '/legal/$slug' ,
119- path : '/legal/$slug' ,
120- getParentRoute : ( ) => rootRouteImport ,
121- } as any )
122128const ChangelogVersionRoute = ChangelogVersionRouteImport . update ( {
123129 id : '/changelog/$version' ,
124130 path : '/changelog/$version' ,
@@ -412,7 +418,9 @@ export interface FileRoutesByFullPath {
412418 '/' : typeof IndexRoute
413419 '/auth' : typeof AuthRoute
414420 '/founders' : typeof FoundersRoute
421+ '/privacy' : typeof PrivacyRoute
415422 '/reset-password' : typeof ResetPasswordRoute
423+ '/terms' : typeof TermsRoute
416424 '/update-password' : typeof UpdatePasswordRoute
417425 '/app' : typeof ViewAppRouteRouteWithChildren
418426 '/pricing' : typeof ViewPricingRoute
@@ -421,7 +429,6 @@ export interface FileRoutesByFullPath {
421429 '/api/templates' : typeof ApiTemplatesRoute
422430 '/blog/$slug' : typeof BlogSlugRoute
423431 '/changelog/$version' : typeof ChangelogVersionRoute
424- '/legal/$slug' : typeof LegalSlugRoute
425432 '/blog/' : typeof BlogIndexRoute
426433 '/changelog/' : typeof ChangelogIndexRoute
427434 '/app/account' : typeof ViewAppAccountRoute
@@ -478,15 +485,16 @@ export interface FileRoutesByTo {
478485 '/' : typeof IndexRoute
479486 '/auth' : typeof AuthRoute
480487 '/founders' : typeof FoundersRoute
488+ '/privacy' : typeof PrivacyRoute
481489 '/reset-password' : typeof ResetPasswordRoute
490+ '/terms' : typeof TermsRoute
482491 '/update-password' : typeof UpdatePasswordRoute
483492 '/pricing' : typeof ViewPricingRoute
484493 '/api/media-upload' : typeof ApiMediaUploadRoute
485494 '/api/shortcuts' : typeof ApiShortcutsRoute
486495 '/api/templates' : typeof ApiTemplatesRoute
487496 '/blog/$slug' : typeof BlogSlugRoute
488497 '/changelog/$version' : typeof ChangelogVersionRoute
489- '/legal/$slug' : typeof LegalSlugRoute
490498 '/blog' : typeof BlogIndexRoute
491499 '/changelog' : typeof ChangelogIndexRoute
492500 '/app/account' : typeof ViewAppAccountRoute
@@ -545,7 +553,9 @@ export interface FileRoutesById {
545553 '/_view' : typeof ViewRouteRouteWithChildren
546554 '/auth' : typeof AuthRoute
547555 '/founders' : typeof FoundersRoute
556+ '/privacy' : typeof PrivacyRoute
548557 '/reset-password' : typeof ResetPasswordRoute
558+ '/terms' : typeof TermsRoute
549559 '/update-password' : typeof UpdatePasswordRoute
550560 '/_view/app' : typeof ViewAppRouteRouteWithChildren
551561 '/_view/pricing' : typeof ViewPricingRoute
@@ -554,7 +564,6 @@ export interface FileRoutesById {
554564 '/api/templates' : typeof ApiTemplatesRoute
555565 '/blog/$slug' : typeof BlogSlugRoute
556566 '/changelog/$version' : typeof ChangelogVersionRoute
557- '/legal/$slug' : typeof LegalSlugRoute
558567 '/blog/' : typeof BlogIndexRoute
559568 '/changelog/' : typeof ChangelogIndexRoute
560569 '/_view/app/account' : typeof ViewAppAccountRoute
@@ -613,7 +622,9 @@ export interface FileRouteTypes {
613622 | '/'
614623 | '/auth'
615624 | '/founders'
625+ | '/privacy'
616626 | '/reset-password'
627+ | '/terms'
617628 | '/update-password'
618629 | '/app'
619630 | '/pricing'
@@ -622,7 +633,6 @@ export interface FileRouteTypes {
622633 | '/api/templates'
623634 | '/blog/$slug'
624635 | '/changelog/$version'
625- | '/legal/$slug'
626636 | '/blog/'
627637 | '/changelog/'
628638 | '/app/account'
@@ -679,15 +689,16 @@ export interface FileRouteTypes {
679689 | '/'
680690 | '/auth'
681691 | '/founders'
692+ | '/privacy'
682693 | '/reset-password'
694+ | '/terms'
683695 | '/update-password'
684696 | '/pricing'
685697 | '/api/media-upload'
686698 | '/api/shortcuts'
687699 | '/api/templates'
688700 | '/blog/$slug'
689701 | '/changelog/$version'
690- | '/legal/$slug'
691702 | '/blog'
692703 | '/changelog'
693704 | '/app/account'
@@ -745,7 +756,9 @@ export interface FileRouteTypes {
745756 | '/_view'
746757 | '/auth'
747758 | '/founders'
759+ | '/privacy'
748760 | '/reset-password'
761+ | '/terms'
749762 | '/update-password'
750763 | '/_view/app'
751764 | '/_view/pricing'
@@ -754,7 +767,6 @@ export interface FileRouteTypes {
754767 | '/api/templates'
755768 | '/blog/$slug'
756769 | '/changelog/$version'
757- | '/legal/$slug'
758770 | '/blog/'
759771 | '/changelog/'
760772 | '/_view/app/account'
@@ -813,14 +825,15 @@ export interface RootRouteChildren {
813825 ViewRouteRoute : typeof ViewRouteRouteWithChildren
814826 AuthRoute : typeof AuthRoute
815827 FoundersRoute : typeof FoundersRoute
828+ PrivacyRoute : typeof PrivacyRoute
816829 ResetPasswordRoute : typeof ResetPasswordRoute
830+ TermsRoute : typeof TermsRoute
817831 UpdatePasswordRoute : typeof UpdatePasswordRoute
818832 ApiMediaUploadRoute : typeof ApiMediaUploadRoute
819833 ApiShortcutsRoute : typeof ApiShortcutsRoute
820834 ApiTemplatesRoute : typeof ApiTemplatesRoute
821835 BlogSlugRoute : typeof BlogSlugRoute
822836 ChangelogVersionRoute : typeof ChangelogVersionRoute
823- LegalSlugRoute : typeof LegalSlugRoute
824837 BlogIndexRoute : typeof BlogIndexRoute
825838 ChangelogIndexRoute : typeof ChangelogIndexRoute
826839 ApiAssetsSplatRoute : typeof ApiAssetsSplatRoute
@@ -867,13 +880,27 @@ declare module '@tanstack/react-router' {
867880 preLoaderRoute : typeof UpdatePasswordRouteImport
868881 parentRoute : typeof rootRouteImport
869882 }
883+ '/terms' : {
884+ id : '/terms'
885+ path : '/terms'
886+ fullPath : '/terms'
887+ preLoaderRoute : typeof TermsRouteImport
888+ parentRoute : typeof rootRouteImport
889+ }
870890 '/reset-password' : {
871891 id : '/reset-password'
872892 path : '/reset-password'
873893 fullPath : '/reset-password'
874894 preLoaderRoute : typeof ResetPasswordRouteImport
875895 parentRoute : typeof rootRouteImport
876896 }
897+ '/privacy' : {
898+ id : '/privacy'
899+ path : '/privacy'
900+ fullPath : '/privacy'
901+ preLoaderRoute : typeof PrivacyRouteImport
902+ parentRoute : typeof rootRouteImport
903+ }
877904 '/founders' : {
878905 id : '/founders'
879906 path : '/founders'
@@ -916,13 +943,6 @@ declare module '@tanstack/react-router' {
916943 preLoaderRoute : typeof BlogIndexRouteImport
917944 parentRoute : typeof rootRouteImport
918945 }
919- '/legal/$slug' : {
920- id : '/legal/$slug'
921- path : '/legal/$slug'
922- fullPath : '/legal/$slug'
923- preLoaderRoute : typeof LegalSlugRouteImport
924- parentRoute : typeof rootRouteImport
925- }
926946 '/changelog/$version' : {
927947 id : '/changelog/$version'
928948 path : '/changelog/$version'
@@ -1379,14 +1399,15 @@ const rootRouteChildren: RootRouteChildren = {
13791399 ViewRouteRoute : ViewRouteRouteWithChildren ,
13801400 AuthRoute : AuthRoute ,
13811401 FoundersRoute : FoundersRoute ,
1402+ PrivacyRoute : PrivacyRoute ,
13821403 ResetPasswordRoute : ResetPasswordRoute ,
1404+ TermsRoute : TermsRoute ,
13831405 UpdatePasswordRoute : UpdatePasswordRoute ,
13841406 ApiMediaUploadRoute : ApiMediaUploadRoute ,
13851407 ApiShortcutsRoute : ApiShortcutsRoute ,
13861408 ApiTemplatesRoute : ApiTemplatesRoute ,
13871409 BlogSlugRoute : BlogSlugRoute ,
13881410 ChangelogVersionRoute : ChangelogVersionRoute ,
1389- LegalSlugRoute : LegalSlugRoute ,
13901411 BlogIndexRoute : BlogIndexRoute ,
13911412 ChangelogIndexRoute : ChangelogIndexRoute ,
13921413 ApiAssetsSplatRoute : ApiAssetsSplatRoute ,
0 commit comments