@@ -14,8 +14,10 @@ import { Route as rootRoute } from './routes/__root'
1414import { Route as DocsImport } from './routes/_docs'
1515import { Route as DocsIndexImport } from './routes/_docs/index'
1616import { Route as StudioSplatImport } from './routes/studio/$'
17- import { Route as DocsIkonerImport } from './routes/_docs/ikoner '
17+ import { Route as DocsProfilIndexImport } from './routes/_docs/profil/index '
1818import { Route as DocsKomponenterIndexImport } from './routes/_docs/komponenter/index'
19+ import { Route as DocsProfilIkonerImport } from './routes/_docs/profil/ikoner'
20+ import { Route as DocsProfilFargerImport } from './routes/_docs/profil/farger'
1921import { Route as DocsKomponenterSlugImport } from './routes/_docs/komponenter/$slug'
2022
2123// Create/Update Routes
@@ -37,9 +39,9 @@ const StudioSplatRoute = StudioSplatImport.update({
3739 getParentRoute : ( ) => rootRoute ,
3840} as any )
3941
40- const DocsIkonerRoute = DocsIkonerImport . update ( {
41- id : '/ikoner ' ,
42- path : '/ikoner ' ,
42+ const DocsProfilIndexRoute = DocsProfilIndexImport . update ( {
43+ id : '/profil/ ' ,
44+ path : '/profil/ ' ,
4345 getParentRoute : ( ) => DocsRoute ,
4446} as any )
4547
@@ -49,6 +51,18 @@ const DocsKomponenterIndexRoute = DocsKomponenterIndexImport.update({
4951 getParentRoute : ( ) => DocsRoute ,
5052} as any )
5153
54+ const DocsProfilIkonerRoute = DocsProfilIkonerImport . update ( {
55+ id : '/profil/ikoner' ,
56+ path : '/profil/ikoner' ,
57+ getParentRoute : ( ) => DocsRoute ,
58+ } as any )
59+
60+ const DocsProfilFargerRoute = DocsProfilFargerImport . update ( {
61+ id : '/profil/farger' ,
62+ path : '/profil/farger' ,
63+ getParentRoute : ( ) => DocsRoute ,
64+ } as any )
65+
5266const DocsKomponenterSlugRoute = DocsKomponenterSlugImport . update ( {
5367 id : '/komponenter/$slug' ,
5468 path : '/komponenter/$slug' ,
@@ -66,13 +80,6 @@ declare module '@tanstack/react-router' {
6680 preLoaderRoute : typeof DocsImport
6781 parentRoute : typeof rootRoute
6882 }
69- '/_docs/ikoner' : {
70- id : '/_docs/ikoner'
71- path : '/ikoner'
72- fullPath : '/ikoner'
73- preLoaderRoute : typeof DocsIkonerImport
74- parentRoute : typeof DocsImport
75- }
7683 '/studio/$' : {
7784 id : '/studio/$'
7885 path : '/studio/$'
@@ -94,80 +101,122 @@ declare module '@tanstack/react-router' {
94101 preLoaderRoute : typeof DocsKomponenterSlugImport
95102 parentRoute : typeof DocsImport
96103 }
104+ '/_docs/profil/farger' : {
105+ id : '/_docs/profil/farger'
106+ path : '/profil/farger'
107+ fullPath : '/profil/farger'
108+ preLoaderRoute : typeof DocsProfilFargerImport
109+ parentRoute : typeof DocsImport
110+ }
111+ '/_docs/profil/ikoner' : {
112+ id : '/_docs/profil/ikoner'
113+ path : '/profil/ikoner'
114+ fullPath : '/profil/ikoner'
115+ preLoaderRoute : typeof DocsProfilIkonerImport
116+ parentRoute : typeof DocsImport
117+ }
97118 '/_docs/komponenter/' : {
98119 id : '/_docs/komponenter/'
99120 path : '/komponenter'
100121 fullPath : '/komponenter'
101122 preLoaderRoute : typeof DocsKomponenterIndexImport
102123 parentRoute : typeof DocsImport
103124 }
125+ '/_docs/profil/' : {
126+ id : '/_docs/profil/'
127+ path : '/profil'
128+ fullPath : '/profil'
129+ preLoaderRoute : typeof DocsProfilIndexImport
130+ parentRoute : typeof DocsImport
131+ }
104132 }
105133}
106134
107135// Create and export the route tree
108136
109137interface DocsRouteChildren {
110- DocsIkonerRoute : typeof DocsIkonerRoute
111138 DocsIndexRoute : typeof DocsIndexRoute
112139 DocsKomponenterSlugRoute : typeof DocsKomponenterSlugRoute
140+ DocsProfilFargerRoute : typeof DocsProfilFargerRoute
141+ DocsProfilIkonerRoute : typeof DocsProfilIkonerRoute
113142 DocsKomponenterIndexRoute : typeof DocsKomponenterIndexRoute
143+ DocsProfilIndexRoute : typeof DocsProfilIndexRoute
114144}
115145
116146const DocsRouteChildren : DocsRouteChildren = {
117- DocsIkonerRoute : DocsIkonerRoute ,
118147 DocsIndexRoute : DocsIndexRoute ,
119148 DocsKomponenterSlugRoute : DocsKomponenterSlugRoute ,
149+ DocsProfilFargerRoute : DocsProfilFargerRoute ,
150+ DocsProfilIkonerRoute : DocsProfilIkonerRoute ,
120151 DocsKomponenterIndexRoute : DocsKomponenterIndexRoute ,
152+ DocsProfilIndexRoute : DocsProfilIndexRoute ,
121153}
122154
123155const DocsRouteWithChildren = DocsRoute . _addFileChildren ( DocsRouteChildren )
124156
125157export interface FileRoutesByFullPath {
126158 '' : typeof DocsRouteWithChildren
127- '/ikoner' : typeof DocsIkonerRoute
128159 '/studio/$' : typeof StudioSplatRoute
129160 '/' : typeof DocsIndexRoute
130161 '/komponenter/$slug' : typeof DocsKomponenterSlugRoute
162+ '/profil/farger' : typeof DocsProfilFargerRoute
163+ '/profil/ikoner' : typeof DocsProfilIkonerRoute
131164 '/komponenter' : typeof DocsKomponenterIndexRoute
165+ '/profil' : typeof DocsProfilIndexRoute
132166}
133167
134168export interface FileRoutesByTo {
135- '/ikoner' : typeof DocsIkonerRoute
136169 '/studio/$' : typeof StudioSplatRoute
137170 '/' : typeof DocsIndexRoute
138171 '/komponenter/$slug' : typeof DocsKomponenterSlugRoute
172+ '/profil/farger' : typeof DocsProfilFargerRoute
173+ '/profil/ikoner' : typeof DocsProfilIkonerRoute
139174 '/komponenter' : typeof DocsKomponenterIndexRoute
175+ '/profil' : typeof DocsProfilIndexRoute
140176}
141177
142178export interface FileRoutesById {
143179 __root__ : typeof rootRoute
144180 '/_docs' : typeof DocsRouteWithChildren
145- '/_docs/ikoner' : typeof DocsIkonerRoute
146181 '/studio/$' : typeof StudioSplatRoute
147182 '/_docs/' : typeof DocsIndexRoute
148183 '/_docs/komponenter/$slug' : typeof DocsKomponenterSlugRoute
184+ '/_docs/profil/farger' : typeof DocsProfilFargerRoute
185+ '/_docs/profil/ikoner' : typeof DocsProfilIkonerRoute
149186 '/_docs/komponenter/' : typeof DocsKomponenterIndexRoute
187+ '/_docs/profil/' : typeof DocsProfilIndexRoute
150188}
151189
152190export interface FileRouteTypes {
153191 fileRoutesByFullPath : FileRoutesByFullPath
154192 fullPaths :
155193 | ''
156- | '/ikoner'
157194 | '/studio/$'
158195 | '/'
159196 | '/komponenter/$slug'
197+ | '/profil/farger'
198+ | '/profil/ikoner'
160199 | '/komponenter'
200+ | '/profil'
161201 fileRoutesByTo : FileRoutesByTo
162- to : '/ikoner' | '/studio/$' | '/' | '/komponenter/$slug' | '/komponenter'
202+ to :
203+ | '/studio/$'
204+ | '/'
205+ | '/komponenter/$slug'
206+ | '/profil/farger'
207+ | '/profil/ikoner'
208+ | '/komponenter'
209+ | '/profil'
163210 id :
164211 | '__root__'
165212 | '/_docs'
166- | '/_docs/ikoner'
167213 | '/studio/$'
168214 | '/_docs/'
169215 | '/_docs/komponenter/$slug'
216+ | '/_docs/profil/farger'
217+ | '/_docs/profil/ikoner'
170218 | '/_docs/komponenter/'
219+ | '/_docs/profil/'
171220 fileRoutesById : FileRoutesById
172221}
173222
@@ -198,16 +247,14 @@ export const routeTree = rootRoute
198247 "/_docs": {
199248 "filePath": "_docs.tsx",
200249 "children": [
201- "/_docs/ikoner",
202250 "/_docs/",
203251 "/_docs/komponenter/$slug",
204- "/_docs/komponenter/"
252+ "/_docs/profil/farger",
253+ "/_docs/profil/ikoner",
254+ "/_docs/komponenter/",
255+ "/_docs/profil/"
205256 ]
206257 },
207- "/_docs/ikoner": {
208- "filePath": "_docs/ikoner.tsx",
209- "parent": "/_docs"
210- },
211258 "/studio/$": {
212259 "filePath": "studio/$.tsx"
213260 },
@@ -219,9 +266,21 @@ export const routeTree = rootRoute
219266 "filePath": "_docs/komponenter/$slug.tsx",
220267 "parent": "/_docs"
221268 },
269+ "/_docs/profil/farger": {
270+ "filePath": "_docs/profil/farger.tsx",
271+ "parent": "/_docs"
272+ },
273+ "/_docs/profil/ikoner": {
274+ "filePath": "_docs/profil/ikoner.tsx",
275+ "parent": "/_docs"
276+ },
222277 "/_docs/komponenter/": {
223278 "filePath": "_docs/komponenter/index.tsx",
224279 "parent": "/_docs"
280+ },
281+ "/_docs/profil/": {
282+ "filePath": "_docs/profil/index.tsx",
283+ "parent": "/_docs"
225284 }
226285 }
227286}
0 commit comments