Add branding assets for TIS tenant with logo and login image

This commit is contained in:
2026-05-11 13:36:06 +03:30
parent 13c791d86f
commit 8e1a021eec
32 changed files with 430 additions and 309 deletions
+10 -8
View File
@@ -1,18 +1,20 @@
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: '',
component: AppLayout,
children: [POS_ROUTES],
},
{
path: 'auth',
component: AuthComponent,
loadComponent: () =>
import('@/domains/pos/layouts/layout.component').then((m) => m.PosLayoutComponent),
children: [
POS_ROUTES,
{
path: 'auth',
loadComponent: () =>
import('@/modules/auth/pages/auth.component').then((m) => m.AuthComponent),
},
],
},
{ path: 'notfound', component: Notfound },
{ path: '**', redirectTo: '/notfound' },