app.routes.ts 532 B

123456789101112131415
  1. import { Routes } from '@angular/router';
  2. import { Home } from './home/home';
  3. import { Project } from './project/project';
  4. import { Profile } from './profile/profile';
  5. import { Privacy } from './privacy/privacy';
  6. import { Error } from './error/error';
  7. export const routes: Routes = [
  8. { path: '', component: Home },
  9. { path: 'projects/:id', component: Project },
  10. { path: 'profile', component: Profile },
  11. { path: 'privacy', component: Privacy },
  12. { path: 'error', component: Error },
  13. { path: '**', redirectTo: '/error' }
  14. ];