mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
22 lines
360 B
Vue
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>
|