@@ -20,6 +20,7 @@ import { Route as SuccessImport } from './routes/success'
20
20
import { Route as PurchaseImport } from './routes/purchase'
21
21
import { Route as PrivacyPolicyImport } from './routes/privacy-policy'
22
22
import { Route as LoginImport } from './routes/login'
23
+ import { Route as CreateTestimonialImport } from './routes/create-testimonial'
23
24
import { Route as CancelImport } from './routes/cancel'
24
25
import { Route as AboutImport } from './routes/about'
25
26
import { Route as IndexImport } from './routes/index'
@@ -80,6 +81,12 @@ const LoginRoute = LoginImport.update({
80
81
getParentRoute : ( ) => rootRoute ,
81
82
} as any )
82
83
84
+ const CreateTestimonialRoute = CreateTestimonialImport . update ( {
85
+ id : '/create-testimonial' ,
86
+ path : '/create-testimonial' ,
87
+ getParentRoute : ( ) => rootRoute ,
88
+ } as any )
89
+
83
90
const CancelRoute = CancelImport . update ( {
84
91
id : '/cancel' ,
85
92
path : '/cancel' ,
@@ -176,6 +183,13 @@ declare module '@tanstack/react-router' {
176
183
preLoaderRoute : typeof CancelImport
177
184
parentRoute : typeof rootRoute
178
185
}
186
+ '/create-testimonial' : {
187
+ id : '/create-testimonial'
188
+ path : '/create-testimonial'
189
+ fullPath : '/create-testimonial'
190
+ preLoaderRoute : typeof CreateTestimonialImport
191
+ parentRoute : typeof rootRoute
192
+ }
179
193
'/login' : {
180
194
id : '/login'
181
195
path : '/login'
@@ -323,6 +337,7 @@ export interface FileRoutesByFullPath {
323
337
'/' : typeof IndexRoute
324
338
'/about' : typeof AboutRoute
325
339
'/cancel' : typeof CancelRoute
340
+ '/create-testimonial' : typeof CreateTestimonialRoute
326
341
'/login' : typeof LoginRoute
327
342
'/privacy-policy' : typeof PrivacyPolicyRoute
328
343
'/purchase' : typeof PurchaseRoute
@@ -344,6 +359,7 @@ export interface FileRoutesByTo {
344
359
'/' : typeof IndexRoute
345
360
'/about' : typeof AboutRoute
346
361
'/cancel' : typeof CancelRoute
362
+ '/create-testimonial' : typeof CreateTestimonialRoute
347
363
'/login' : typeof LoginRoute
348
364
'/privacy-policy' : typeof PrivacyPolicyRoute
349
365
'/purchase' : typeof PurchaseRoute
@@ -365,6 +381,7 @@ export interface FileRoutesById {
365
381
'/' : typeof IndexRoute
366
382
'/about' : typeof AboutRoute
367
383
'/cancel' : typeof CancelRoute
384
+ '/create-testimonial' : typeof CreateTestimonialRoute
368
385
'/login' : typeof LoginRoute
369
386
'/privacy-policy' : typeof PrivacyPolicyRoute
370
387
'/purchase' : typeof PurchaseRoute
@@ -389,6 +406,7 @@ export interface FileRouteTypes {
389
406
| '/'
390
407
| '/about'
391
408
| '/cancel'
409
+ | '/create-testimonial'
392
410
| '/login'
393
411
| '/privacy-policy'
394
412
| '/purchase'
@@ -409,6 +427,7 @@ export interface FileRouteTypes {
409
427
| '/'
410
428
| '/about'
411
429
| '/cancel'
430
+ | '/create-testimonial'
412
431
| '/login'
413
432
| '/privacy-policy'
414
433
| '/purchase'
@@ -428,6 +447,7 @@ export interface FileRouteTypes {
428
447
| '/'
429
448
| '/about'
430
449
| '/cancel'
450
+ | '/create-testimonial'
431
451
| '/login'
432
452
| '/privacy-policy'
433
453
| '/purchase'
@@ -451,6 +471,7 @@ export interface RootRouteChildren {
451
471
IndexRoute : typeof IndexRoute
452
472
AboutRoute : typeof AboutRoute
453
473
CancelRoute : typeof CancelRoute
474
+ CreateTestimonialRoute : typeof CreateTestimonialRoute
454
475
LoginRoute : typeof LoginRoute
455
476
PrivacyPolicyRoute : typeof PrivacyPolicyRoute
456
477
PurchaseRoute : typeof PurchaseRoute
@@ -470,6 +491,7 @@ const rootRouteChildren: RootRouteChildren = {
470
491
IndexRoute : IndexRoute ,
471
492
AboutRoute : AboutRoute ,
472
493
CancelRoute : CancelRoute ,
494
+ CreateTestimonialRoute : CreateTestimonialRoute ,
473
495
LoginRoute : LoginRoute ,
474
496
PrivacyPolicyRoute : PrivacyPolicyRoute ,
475
497
PurchaseRoute : PurchaseRoute ,
@@ -498,6 +520,7 @@ export const routeTree = rootRoute
498
520
"/",
499
521
"/about",
500
522
"/cancel",
523
+ "/create-testimonial",
501
524
"/login",
502
525
"/privacy-policy",
503
526
"/purchase",
@@ -522,6 +545,9 @@ export const routeTree = rootRoute
522
545
"/cancel": {
523
546
"filePath": "cancel.tsx"
524
547
},
548
+ "/create-testimonial": {
549
+ "filePath": "create-testimonial.tsx"
550
+ },
525
551
"/login": {
526
552
"filePath": "login.tsx"
527
553
},
0 commit comments