From 6c9c3c9f7d383a924ae31b770d6c004f1cc06729 Mon Sep 17 00:00:00 2001 From: Alexandro Uc Santos Date: Fri, 19 Jan 2024 20:35:54 -0600 Subject: [PATCH] add: terns & notice privacity --- src/components/Sidebar.vue | 6 +- src/router/index.js | 16 +++ src/views/NoticeOfPrivacyView.vue | 184 +++++++++++++++++++++++++++ src/views/TermsAndConditionsView.vue | 101 +++++++++++++++ 4 files changed, 305 insertions(+), 2 deletions(-) create mode 100644 src/views/NoticeOfPrivacyView.vue create mode 100644 src/views/TermsAndConditionsView.vue diff --git a/src/components/Sidebar.vue b/src/components/Sidebar.vue index 8871946..d3bb25f 100644 --- a/src/components/Sidebar.vue +++ b/src/components/Sidebar.vue @@ -116,8 +116,10 @@
- Aviso de privaciadad - Terminos y condiciones + + + Aviso de privaciadad + Terminos y condiciones FAQS
diff --git a/src/router/index.js b/src/router/index.js index c1a5ecb..f628926 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -31,6 +31,22 @@ const router = createRouter({ path: 'registro-empresa', name: 'register-company', component: () => import('../views/CompleteRegisterView.vue') + }, + ] + }, + { + path: '/publico', + name: 'public', + children: [ + { + path: 'terminos-y-condiciones', + name: 'terms-conditions', + component: () => import('../views/TermsAndConditionsView.vue') + }, + { + path: 'eviso-de-privacidad', + name: 'notice-privacy', + component: () => import('../views/NoticeOfPrivacyView.vue') } ] }, diff --git a/src/views/NoticeOfPrivacyView.vue b/src/views/NoticeOfPrivacyView.vue new file mode 100644 index 0000000..fd6215a --- /dev/null +++ b/src/views/NoticeOfPrivacyView.vue @@ -0,0 +1,184 @@ + + + \ No newline at end of file diff --git a/src/views/TermsAndConditionsView.vue b/src/views/TermsAndConditionsView.vue new file mode 100644 index 0000000..4a00cd6 --- /dev/null +++ b/src/views/TermsAndConditionsView.vue @@ -0,0 +1,101 @@ + + + \ No newline at end of file