@@ -0,0 +1,17 @@
+ import { Routes } from '@angular/router';
+
+export const MOBILE_ROUTES: Routes = [
+ {
+ path: 'home',
+ loadComponent: () => import('./page-crm-home/page-crm-home').then(m => m.PageCrmHome)
+ },
+ path: 'talk',
+ loadComponent: () => import('./page-crm-platform/page-crm-platform').then(m => m.PageCrmPlatform)
+ path: '',
+ redirectTo: 'home',
+ pathMatch: 'full'
+ }
+]