import { Routes } from '@angular/router'; import {AboutComponent} from './pages/about/about.component'; import {ProjectsComponent} from './pages/projects/projects.component'; import {ImprintComponent} from './pages/imprint/imprint.component'; import {AlgorithmsComponent} from './pages/algorithms/algorithms.component'; import {PathfindingComponent} from './pages/algorithms/pathfinding/pathfinding.component'; export const routes: Routes = [ { path: '', component: AboutComponent }, { path: 'about', component: AboutComponent}, { path: 'projects', component: ProjectsComponent}, { path: 'algorithms', component: AlgorithmsComponent}, { path: 'algorithms/pathfinding', component: PathfindingComponent }, { path: 'imprint', component: ImprintComponent}, ];