2021-07-29 16:54:20 +02:00

22 lines
360 B
Vue

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