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.
50 lines
1.3 KiB
50 lines
1.3 KiB
<template> |
|
<v-card |
|
max-width="300" |
|
min-height="" |
|
class=" pb-3" |
|
href="https://github.com/sponsors/nocodb" |
|
target="_blank" |
|
> |
|
<v-img src="ants-leaf-cutter.jpeg" :height="nav ? 80 : ''" class=" mt-0"> |
|
<template #placeholder> |
|
<v-skeleton-loader |
|
width="700" |
|
type="image" |
|
/> |
|
</template> |
|
</v-img> |
|
<v-card-title v-if="!nav" class="pb-2" :class="{'body-2 justify-center mt-n2' : nav}"> |
|
You can help us |
|
</v-card-title> |
|
<v-card-text v-if="!nav" class="pb-0"> |
|
<p class="caption text-left body-1 textColor--text text--lighten-1"> |
|
<template> |
|
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. |
|
</template> |
|
</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> |
|
Sponsor Us |
|
</v-btn> |
|
</v-card-actions> |
|
</v-card> |
|
</template> |
|
|
|
<script> |
|
export default { |
|
name: 'SponsorMini', |
|
props: { |
|
nav: Boolean |
|
} |
|
} |
|
</script> |
|
|
|
<style scoped> |
|
|
|
</style>
|
|
|