diff --git a/src/components/Layout/Foot.vue b/src/components/Layout/Foot.vue index 05d0ddf2..2ef18acd 100644 --- a/src/components/Layout/Foot.vue +++ b/src/components/Layout/Foot.vue @@ -21,6 +21,7 @@
  • Privacy Policy
  • Terms of Use
  • Hosting Policy
  • +
  • Digital Services Act Information
  • Imprint
  • Report illegal content
  • diff --git a/src/components/Pages/DsaInfo/DsaEnglish.vue b/src/components/Pages/DsaInfo/DsaEnglish.vue new file mode 100644 index 00000000..32729c83 --- /dev/null +++ b/src/components/Pages/DsaInfo/DsaEnglish.vue @@ -0,0 +1,147 @@ + + + + + diff --git a/src/components/Pages/DsaInfo/DsaGerman.vue b/src/components/Pages/DsaInfo/DsaGerman.vue new file mode 100644 index 00000000..26fe8711 --- /dev/null +++ b/src/components/Pages/DsaInfo/DsaGerman.vue @@ -0,0 +1,153 @@ + + + + + diff --git a/src/components/Pages/DsaInfo/DsaInfo.vue b/src/components/Pages/DsaInfo/DsaInfo.vue new file mode 100644 index 00000000..ce2cae17 --- /dev/null +++ b/src/components/Pages/DsaInfo/DsaInfo.vue @@ -0,0 +1,41 @@ + + + + + diff --git a/src/router/index.js b/src/router/index.js index 9e8ea56b..39aa11d0 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -20,6 +20,7 @@ import User from '@/components/Pages/User' import Discovery from '@/components/Pages/Discovery/Discovery' import Complaint from '@/components/Pages/Complaint.vue' import HostingPolicy from '@/components/Pages/HostingPolicy.vue' +import DsaInfo from '@/components/Pages/DsaInfo/DsaInfo' Vue.use(Router) @@ -84,6 +85,11 @@ const router = new Router({ name: 'Privacy', component: Privacy, }, + { + path: '/dsa-info', + name: 'DsaInfo', + component: DsaInfo, + }, { path: '/logout', name: 'Logout',