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.
31 lines
1.2 KiB
31 lines
1.2 KiB
2 years ago
|
<script lang="ts" setup>
|
||
|
interface Props {
|
||
|
nav?: boolean
|
||
|
}
|
||
|
|
||
|
const { nav = false } = defineProps<Props>()
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<v-card :rounded="0" max-width="300" class="pb-3" href="https://github.com/sponsors/nocodb" target="_blank">
|
||
|
<v-img src="/ants-leaf-cutter.jpeg" :cover="true" :aspect-ratio="1" :height="nav ? 80 : ''" class="mt-0" />
|
||
|
<!-- You can help us! -->
|
||
|
<v-card-title v-if="!nav" class="pb-2" :class="{ 'body-2 justify-center mt-n2': nav }">
|
||
|
{{ $t('msg.info.sponsor.header') }}
|
||
|
</v-card-title>
|
||
|
<v-card-text v-if="!nav" class="pb-0">
|
||
|
<p class="caption text-left body-1 textColor--text text--lighten-1">
|
||
|
<!-- We are a tiny team working full time to make NocoDB open source. We believe a tool like NocoDB should be
|
||
|
available freely to every problem solver on internet. -->
|
||
|
{{ $t('msg.info.sponsor.message') }}
|
||
|
</p>
|
||
|
</v-card-text>
|
||
|
<v-card-actions class="justify-center">
|
||
|
<v-btn color="primary" :class="{ 'mt-n2': !nav, 'mt-2 mb-n1': nav }" small outlined>
|
||
|
<v-icon small color="red" class="mr-2"> mdi-cards-heart </v-icon>
|
||
|
{{ $t('activity.sponsorUs') }}
|
||
|
</v-btn>
|
||
|
</v-card-actions>
|
||
|
</v-card>
|
||
|
</template>
|