import { Routes } from '@angular/router'; import { Home } from './pages/home/home'; import { About } from './pages/about/about'; export const routes: Routes = [ { path: '', component: Home }, { path: 'about', component: About }, { path: '**', redirectTo: '', pathMatch: 'full' }, ];