diff --git a/frontend/src/app/app.routes.ts b/frontend/src/app/app.routes.ts index 1f6c192a..cdf20b87 100644 --- a/frontend/src/app/app.routes.ts +++ b/frontend/src/app/app.routes.ts @@ -16,6 +16,16 @@ export const routes: Routes = [ path: 'shop', loadChildren: () => import('./shop/shop.routes').then((m) => m.SHOP_ROUTES), }, + { + path: 'privacy-policy', + title: 'Privacy Policy', + loadComponent: () => import('./shared/privacy-policy/privacy-policy.component').then((m) => m.PrivacyPolicyComponent), + }, + { + path: 'terms-of-service', + title: 'Terms of Service', + loadComponent: () => import('./shared/terms-of-service/terms-of-service.component').then((m) => m.TermsOfServiceComponent), + }, { path: '', redirectTo: '/home', diff --git a/frontend/src/app/dialogs/information/information.component.html b/frontend/src/app/dialogs/information/information.component.html index 485e9321..088a9c4e 100644 --- a/frontend/src/app/dialogs/information/information.component.html +++ b/frontend/src/app/dialogs/information/information.component.html @@ -9,13 +9,17 @@