Implement admin and user sidebars with routing and styling updates

This commit is contained in:
liosha84
2025-07-19 17:23:11 +03:00
parent 70338eae0b
commit 88f0cf307e
26 changed files with 540 additions and 120 deletions
@@ -8,7 +8,7 @@ const ADMIN_ROUTES: Routes = [
children: [
{
path: 'welcome',
path: 'admin-welcome',
loadComponent: () => import('../admin-module/admin-welcome.component/admin-welcome.component').then((c) => c.AdminWelcomeComponent),
},
{
@@ -17,9 +17,12 @@ const ADMIN_ROUTES: Routes = [
},
{
path: 'system',
loadComponent: () => import('../admin-module/system.component/system.component').then((c) => c.SystemComponent)
}
},
{
path: 'users',
loadComponent: () => import('../admin-module/users.component/users.component').then((c) => c.UsersComponent)
}
]
}
];