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