From 4344d4fa42a3ba30ceea1ce7800d621fa4f9dc37 Mon Sep 17 00:00:00 2001 From: itsscb Date: Tue, 4 Mar 2025 23:07:41 +0100 Subject: [PATCH] feat: add routes for Verification, Privacy, and Terms of Service components --- frontend/src/app/app.routes.ts | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/frontend/src/app/app.routes.ts b/frontend/src/app/app.routes.ts index 05e807e..f76d706 100644 --- a/frontend/src/app/app.routes.ts +++ b/frontend/src/app/app.routes.ts @@ -3,6 +3,9 @@ import {StartComponent} from "./page/onboarding/start/start.component"; import {NotificationComponent} from "./page/onboarding/notification/notification.component"; import {RegistrationComponent} from "./page/onboarding/registration/registration.component"; import {LoginComponent} from "./page/login/login.component"; +import {VerificationComponent} from "./page/onboarding/verification/verification.component"; +import {PrivacyComponent} from "./page/privacy/privacy.component"; +import {TermsOfServiceComponent} from "./page/terms-of-service/terms-of-service.component"; export const routes: Routes = [ { @@ -10,13 +13,25 @@ export const routes: Routes = [ component: StartComponent, }, { - path: 'onboarding/notification', + path: 'onboarding/notifications', component: NotificationComponent, }, { path: 'onboarding/registration', component: RegistrationComponent, }, + { + path: 'onboarding/verification', + component: VerificationComponent, + }, + { + path: 'privacy', + component: PrivacyComponent, + }, + { + path: 'terms', + component: TermsOfServiceComponent, + }, { path: 'login', component: LoginComponent,