diff --git a/src/app/app.routes.ts b/src/app/app.routes.ts index e057e7903..be190812d 100644 --- a/src/app/app.routes.ts +++ b/src/app/app.routes.ts @@ -29,6 +29,20 @@ export const routes: Routes = [ (mod) => mod.SupportComponent, ), }, + { + path: 'terms-of-use', + loadComponent: () => + import('./features/terms-of-use/terms-of-use.component').then( + (mod) => mod.TermsOfUseComponent, + ), + }, + { + path: 'privacy-policy', + loadComponent: () => + import('./features/privacy-policy/privacy-policy.component').then( + (mod) => mod.PrivacyPolicyComponent, + ), + }, ], }, ]; diff --git a/src/app/core/components/footer/footer.component.html b/src/app/core/components/footer/footer.component.html index bf5af1c1b..044dc876e 100644 --- a/src/app/core/components/footer/footer.component.html +++ b/src/app/core/components/footer/footer.component.html @@ -25,9 +25,9 @@