50 lines
1.8 KiB
TypeScript
50 lines
1.8 KiB
TypeScript
|
|
// Lavero brand routes
|
||
|
|
// Loaded via angular.json fileReplacements when building for novo
|
||
|
|
import { Routes } from '@angular/router';
|
||
|
|
|
||
|
|
export const brandInfoRoutes: Routes = [
|
||
|
|
{
|
||
|
|
path: 'about',
|
||
|
|
loadComponent: () => import('./lavero/pages/info/about/about.component').then(m => m.AboutLaveroComponent)
|
||
|
|
},
|
||
|
|
{
|
||
|
|
path: 'contacts',
|
||
|
|
loadComponent: () => import('./lavero/pages/info/contacts/contacts.component').then(m => m.ContactsLaveroComponent)
|
||
|
|
},
|
||
|
|
{
|
||
|
|
path: 'faq',
|
||
|
|
loadComponent: () => import('./lavero/pages/info/faq/faq.component').then(m => m.FaqLaveroComponent)
|
||
|
|
},
|
||
|
|
{
|
||
|
|
path: 'delivery',
|
||
|
|
loadComponent: () => import('./lavero/pages/info/delivery/delivery.component').then(m => m.DeliveryLaveroComponent)
|
||
|
|
},
|
||
|
|
{
|
||
|
|
path: 'guarantee',
|
||
|
|
loadComponent: () => import('./lavero/pages/info/guarantee/guarantee.component').then(m => m.GuaranteeLaveroComponent)
|
||
|
|
}
|
||
|
|
];
|
||
|
|
|
||
|
|
export const brandLegalRoutes: Routes = [
|
||
|
|
{
|
||
|
|
path: 'company-details',
|
||
|
|
loadComponent: () => import('./lavero/pages/legal/company-details/company-details.component').then(m => m.CompanyDetailsLaveroComponent)
|
||
|
|
},
|
||
|
|
{
|
||
|
|
path: 'payment-terms',
|
||
|
|
loadComponent: () => import('./lavero/pages/legal/payment-terms/payment-terms.component').then(m => m.PaymentTermsLaveroComponent)
|
||
|
|
},
|
||
|
|
{
|
||
|
|
path: 'return-policy',
|
||
|
|
loadComponent: () => import('./lavero/pages/legal/return-policy/return-policy.component').then(m => m.ReturnPolicyLaveroComponent)
|
||
|
|
},
|
||
|
|
{
|
||
|
|
path: 'public-offer',
|
||
|
|
loadComponent: () => import('./lavero/pages/legal/public-offer/public-offer.component').then(m => m.PublicOfferLaveroComponent)
|
||
|
|
},
|
||
|
|
{
|
||
|
|
path: 'privacy-policy',
|
||
|
|
loadComponent: () => import('./lavero/pages/legal/privacy-policy/privacy-policy.component').then(m => m.PrivacyPolicyLaveroComponent)
|
||
|
|
}
|
||
|
|
];
|