14 lines
337 B
TypeScript
14 lines
337 B
TypeScript
import { Routes } from '@angular/router';
|
|
|
|
export const CONTACT_ROUTES: Routes = [
|
|
{
|
|
path: '',
|
|
loadComponent: () =>
|
|
import('./contact-page.component').then((m) => m.ContactPageComponent),
|
|
data: {
|
|
seoTitleKey: 'SEO.ROUTES.CONTACT.TITLE',
|
|
seoDescriptionKey: 'SEO.ROUTES.CONTACT.DESCRIPTION',
|
|
},
|
|
},
|
|
];
|