Ocelot-Social/webapp/pages/data-privacy.vue
roschaefer 77b031083e Make four static pages
* imprint
* data privacy
* terms of service
* code of conduct
2020-06-15 14:08:45 +02:00

24 lines
364 B
Vue

<template>
<div>
<ds-space>
<ds-heading tag="h2">{{ $t('site.data-privacy') }}</ds-heading>
</ds-space>
<ds-container>
<div v-html="$t('html.dataPrivacy')" />
</ds-container>
</div>
</template>
<script>
export default {
layout: 'basic',
head() {
return {
title: this.$t('site.data-privacy'),
}
},
}
</script>