Add "ui login" support

This commit is contained in:
schroda
2025-07-27 00:03:51 +02:00
parent 403cab7d80
commit 4aad410957
33 changed files with 1270 additions and 203 deletions

View File

@@ -38,13 +38,23 @@ export const AppRoutes = {
matchAll: {
match: '*',
},
authentication: {
match: 'auth',
path: '/auth',
childRoutes: {
login: {
match: 'login',
path: '/auth/login',
},
},
},
about: {
match: 'about',
path: '/about',
},
settings: {
path: '/settings',
match: 'settings',
path: '/settings',
childRoutes: {
categories: {
match: 'categories',