import { Routes } from '@angular/router'; import { AboutComponent } from './about.component'; import { ChangeLogComponent } from './change-log/changelog.component'; import { LegalNoticeComponent } from './legal-notice/legal-notice.component'; import { HelpSupportComponent } from './help-support/help-support.component'; import { OpensourceLicencesComponent } from './opensource-licences/opensource-licences.component'; import { LicenceDetailsComponent } from './licence-details/licence-details.component'; export const ABOUT_ROUTES: Routes = [ { path: '', component: AboutComponent, }, { path: 'change-log', component: ChangeLogComponent }, { path: 'legal-notice', component: LegalNoticeComponent }, { path: 'help-support', component: HelpSupportComponent }, { path: 'opensource-licences', component: OpensourceLicencesComponent, }, { path: 'opensource-licences/licence-details', component: LicenceDetailsComponent }, ];