##IMPORTS## import { TextComponent } from "./shared/page-components/text/text.component"; import { ImageComponent } from "./shared/page-components/image/image.component"; import { TitleComponent } from "./shared/page-components/title/title.component"; export const routes = [ { path: '', redirectTo: '##HOMEPAGE##', pathMatch: 'full' }, ##PATHS## ]; export const navigatableComponents = [ ##NAVIGATABLE## ]; export const pageComponents = [ TextComponent, ImageComponent, TitleComponent ]; export const services = [ ##SERVICES## ];