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.
39 lines
1014 B
39 lines
1014 B
2 years ago
|
<script lang="ts" setup>
|
||
|
interface Props {
|
||
|
nav?: boolean
|
||
|
}
|
||
|
|
||
2 years ago
|
const { nav = false } = defineProps<Props>()
|
||
2 years ago
|
</script>
|
||
|
|
||
|
<template>
|
||
2 years ago
|
<a-card class="w-[300px] shadow-sm !rounded-lg">
|
||
2 years ago
|
<template #cover>
|
||
2 years ago
|
<img class="max-h-[180px] !rounded-t-lg" alt="cover" src="~/assets/img/ants-leaf-cutter.jpeg" />
|
||
2 years ago
|
</template>
|
||
2 years ago
|
|
||
2 years ago
|
<a-card-meta>
|
||
|
<template #title>
|
||
|
<span v-if="!nav" class="text-xl pb-4">
|
||
|
{{ $t('msg.info.sponsor.header') }}
|
||
|
</span>
|
||
|
</template>
|
||
|
</a-card-meta>
|
||
2 years ago
|
|
||
2 years ago
|
<div v-if="!nav" class="py-5 text-sm">
|
||
2 years ago
|
{{ $t('msg.info.sponsor.message') }}
|
||
2 years ago
|
</div>
|
||
2 years ago
|
|
||
2 years ago
|
<div class="flex justify-center">
|
||
2 years ago
|
<nuxt-link href="https://github.com/sponsors/nocodb" target="_blank">
|
||
2 years ago
|
<a-button class="!shadow rounded" size="large">
|
||
2 years ago
|
<div class="flex items-center">
|
||
|
<mdi-cards-heart class="text-red-500 mr-2" />
|
||
|
{{ $t('activity.sponsorUs') }}
|
||
|
</div>
|
||
|
</a-button>
|
||
|
</nuxt-link>
|
||
2 years ago
|
</div>
|
||
|
</a-card>
|
||
2 years ago
|
</template>
|