Add branding assets for TIS tenant with logo and login image
This commit is contained in:
@@ -3,20 +3,18 @@ import { PARTNER_ROUTES } from '@/domains/partner/routes';
|
||||
import { POS_ROUTES } from '@/domains/pos/routes';
|
||||
import { PROVIDER_ROUTES } from '@/domains/provider/routes';
|
||||
import { SUPER_ADMIN_ROUTES } from '@/domains/superAdmin/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,
|
||||
loadComponent: () => import('@/layout/default/app.layout.component').then((m) => m.AppLayout),
|
||||
children: [SUPER_ADMIN_ROUTES, CONSUMER_ROUTES, PROVIDER_ROUTES, PARTNER_ROUTES, POS_ROUTES],
|
||||
},
|
||||
{
|
||||
path: 'auth',
|
||||
component: AuthComponent,
|
||||
loadComponent: () => import('@/modules/auth/pages/auth.component').then((m) => m.AuthComponent),
|
||||
},
|
||||
{ path: 'notfound', component: Notfound },
|
||||
{ path: '**', redirectTo: '/notfound' },
|
||||
|
||||
@@ -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' },
|
||||
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 83 KiB |
@@ -0,0 +1,7 @@
|
||||
import login from 'src/tenants/tis/assets/images/login.jpg';
|
||||
import logo from 'src/tenants/tis/assets/images/logo.png';
|
||||
|
||||
export default {
|
||||
logo,
|
||||
login,
|
||||
};
|
||||
Reference in New Issue
Block a user