update many things

This commit is contained in:
2026-05-04 20:02:10 +03:30
parent 797aecd489
commit ec452bca22
72 changed files with 1375 additions and 606 deletions
+6 -2
View File
@@ -1,11 +1,15 @@
import { POS_ROUTES } from '@/domains/pos/routes';
import { AppLayout } from '@/layout/default/app.layout.component';
import { AuthComponent } from '@/modules/auth/pages/auth.component';
import { Notfound } from '@/pages/notfound/notfound.component';
import { Routes } from '@angular/router';
export const appRoutes: Routes = [
{ path: '', redirectTo: 'pos', pathMatch: 'full' },
POS_ROUTES,
{
path: '',
component: AppLayout,
children: [POS_ROUTES],
},
{
path: 'auth',
component: AuthComponent,