mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
903 B
36 lines
903 B
<script lang="ts" setup> |
|
import MdiHeartsCard from '~icons/mdi/cards-heart' |
|
|
|
interface Props { |
|
nav?: boolean |
|
} |
|
|
|
const { nav = false } = defineProps<Props>() |
|
</script> |
|
|
|
<template> |
|
<v-card :rounded="0" class="dark:bg-gray-900" href="https://github.com/sponsors/nocodb" target="_blank"> |
|
<v-img src="/ants-leaf-cutter.jpeg" :cover="true" :aspect-ratio="1" :height="nav ? 80 : ''" /> |
|
|
|
<v-card-title v-if="!nav" class="pb-2"> |
|
{{ $t('msg.info.sponsor.header') }} |
|
</v-card-title> |
|
|
|
<v-card-text v-if="!nav" class="pb-0"> |
|
{{ $t('msg.info.sponsor.message') }} |
|
</v-card-text> |
|
|
|
<v-card-actions class="justify-center"> |
|
<v-btn class="dark:(!text-white) text-primary"> |
|
<MdiHeartsCard class="text-red-500 mr-2" /> |
|
{{ $t('activity.sponsorUs') }} |
|
</v-btn> |
|
</v-card-actions> |
|
</v-card> |
|
</template> |
|
|
|
<style> |
|
a img { |
|
margin: 0 !important; |
|
} |
|
</style>
|
|
|