mirror of
https://iceshrimp.dev/Crimekillz/jointrashposs.git
synced 2024-11-22 17:03:50 +01:00
13 lines
629 B
Vue
13 lines
629 B
Vue
<template>
|
|
<div class="bg-white dark:bg-slate-950 rounded-2xl p-6 lg:p-12 lg:py-24 mx-auto max-w-screen-lg">
|
|
<h2 class="text-center text-xl lg:text-3xl font-bold font-title mb-6">{{ $t('_landing._donation.title') }}</h2>
|
|
<p class="lg:text-lg leading-relaxed lg:leading-loose mb-6">{{ $t('_landing._donation.description') }}</p>
|
|
<p class="text-center">
|
|
<GButton button-type="link" :to="localePath('/docs/for-users/resources/donate/')" color="accent">{{ $t('learnMore') }}</GButton>
|
|
</p>
|
|
</div>
|
|
</template>
|
|
<script setup lang="ts">
|
|
const localePath = useGLocalePath();
|
|
</script>
|