diff --git a/src/app/components/shared/shared-routing.module.ts b/src/app/components/shared/shared-routing.module.ts new file mode 100644 index 0000000000000000000000000000000000000000..2d37a131d347d90e9524e6796429fae82316f210 --- /dev/null +++ b/src/app/components/shared/shared-routing.module.ts @@ -0,0 +1,34 @@ +import { NgModule } from '@angular/core'; +import { Routes, RouterModule } from '@angular/router'; +import { LoginPageComponent } from './login-page/login-page.component'; +import { FooterImprintComponent } from './footer-imprint/footer-imprint.component'; +import { PageNotFoundComponent } from './page-not-found/page-not-found.component'; + + +const routes: Routes = [ + { + path: '', + redirectTo: '/home', + pathMatch: 'full' + }, + { + path: 'home', + component: LoginPageComponent + }, + { + path: 'imprint', + component: FooterImprintComponent + }, + { + path: '**', + component: PageNotFoundComponent + } +]; + +@NgModule({ + imports: [RouterModule.forChild(routes)], + exports: [RouterModule] +}) + +export class SharedRoutingModule { +}