diff --git a/src/app/brands/brand-routes.lavero.ts b/src/app/brands/brand-routes.lavero.ts deleted file mode 100644 index 1e604fd..0000000 --- a/src/app/brands/brand-routes.lavero.ts +++ /dev/null @@ -1,49 +0,0 @@ -// 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) - } -]; diff --git a/src/app/brands/brand-routes.novo.ts b/src/app/brands/brand-routes.novo.ts deleted file mode 100644 index afb37bc..0000000 --- a/src/app/brands/brand-routes.novo.ts +++ /dev/null @@ -1,49 +0,0 @@ -// Novo brand routes -// Loaded via angular.json fileReplacements when building for novo -import { Routes } from '@angular/router'; - -export const brandInfoRoutes: Routes = [ - { - path: 'about', - loadComponent: () => import('./novo/pages/info/about/about.component').then(m => m.AboutNovoComponent) - }, - { - path: 'contacts', - loadComponent: () => import('./novo/pages/info/contacts/contacts.component').then(m => m.ContactsNovoComponent) - }, - { - path: 'faq', - loadComponent: () => import('./novo/pages/info/faq/faq.component').then(m => m.FaqNovoComponent) - }, - { - path: 'delivery', - loadComponent: () => import('./novo/pages/info/delivery/delivery.component').then(m => m.DeliveryNovoComponent) - }, - { - path: 'guarantee', - loadComponent: () => import('./novo/pages/info/guarantee/guarantee.component').then(m => m.GuaranteeNovoComponent) - } -]; - -export const brandLegalRoutes: Routes = [ - { - path: 'company-details', - loadComponent: () => import('./novo/pages/legal/company-details/company-details.component').then(m => m.CompanyDetailsNovoComponent) - }, - { - path: 'payment-terms', - loadComponent: () => import('./novo/pages/legal/payment-terms/payment-terms.component').then(m => m.PaymentTermsNovoComponent) - }, - { - path: 'return-policy', - loadComponent: () => import('./novo/pages/legal/return-policy/return-policy.component').then(m => m.ReturnPolicyNovoComponent) - }, - { - path: 'public-offer', - loadComponent: () => import('./novo/pages/legal/public-offer/public-offer.component').then(m => m.PublicOfferNovoComponent) - }, - { - path: 'privacy-policy', - loadComponent: () => import('./novo/pages/legal/privacy-policy/privacy-policy.component').then(m => m.PrivacyPolicyNovoComponent) - } -]; diff --git a/src/app/brands/brand-routes.ts b/src/app/brands/brand-routes.ts deleted file mode 100644 index 09382cb..0000000 --- a/src/app/brands/brand-routes.ts +++ /dev/null @@ -1,49 +0,0 @@ -// Default brand routes (Dexar) -// This file is swapped via angular.json fileReplacements for each brand -import { Routes } from '@angular/router'; - -export const brandInfoRoutes: Routes = [ - { - path: 'about', - loadComponent: () => import('../pages/info/about/about.component').then(m => m.AboutComponent) - }, - { - path: 'contacts', - loadComponent: () => import('../pages/info/contacts/contacts.component').then(m => m.ContactsComponent) - }, - { - path: 'faq', - loadComponent: () => import('../pages/info/faq/faq.component').then(m => m.FaqComponent) - }, - { - path: 'delivery', - loadComponent: () => import('../pages/info/delivery/delivery.component').then(m => m.DeliveryComponent) - }, - { - path: 'guarantee', - loadComponent: () => import('../pages/info/guarantee/guarantee.component').then(m => m.GuaranteeComponent) - } -]; - -export const brandLegalRoutes: Routes = [ - { - path: 'company-details', - loadComponent: () => import('../pages/legal/company-details/company-details.component').then(m => m.CompanyDetailsComponent) - }, - { - path: 'payment-terms', - loadComponent: () => import('../pages/legal/payment-terms/payment-terms.component').then(m => m.PaymentTermsComponent) - }, - { - path: 'return-policy', - loadComponent: () => import('../pages/legal/return-policy/return-policy.component').then(m => m.ReturnPolicyComponent) - }, - { - path: 'public-offer', - loadComponent: () => import('../pages/legal/public-offer/public-offer.component').then(m => m.PublicOfferComponent) - }, - { - path: 'privacy-policy', - loadComponent: () => import('../pages/legal/privacy-policy/privacy-policy.component').then(m => m.PrivacyPolicyComponent) - } -];