26 lines
641 B
TypeScript
26 lines
641 B
TypeScript
import { Routes } from '@angular/router';
|
|
|
|
export const routes: Routes = [
|
|
{
|
|
path: '',
|
|
loadComponent: () =>
|
|
import('./pages/fastcheck-page/fastcheck-page').then((m) => m.FastcheckPage)
|
|
},
|
|
{
|
|
path: 'about',
|
|
loadComponent: () =>
|
|
import('./pages/about-page/about-page').then((m) => m.AboutPage)
|
|
},
|
|
{
|
|
path: 'contacts',
|
|
loadComponent: () =>
|
|
import('./pages/contacts-page/contacts-page').then((m) => m.ContactsPage)
|
|
},
|
|
{
|
|
path: 'partners',
|
|
loadComponent: () =>
|
|
import('./pages/partners-page/partners-page').then((m) => m.PartnersPage)
|
|
},
|
|
{ path: '**', redirectTo: '' }
|
|
];
|