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.
58 lines
1.4 KiB
58 lines
1.4 KiB
4 years ago
|
<template>
|
||
|
<v-overlay opacity=".98">
|
||
|
<v-card light width="450" min-height="500" class="" href="https://github.com/sponsors/xgenecloud"
|
||
|
target="_blank">
|
||
|
|
||
|
|
||
|
<v-img src="ants-leaf-cutter.jpeg" class="mt-0" height="300">
|
||
|
<template v-slot:placeholder>
|
||
|
<v-skeleton-loader
|
||
|
height="300"
|
||
|
width="700"
|
||
|
type="image"></v-skeleton-loader>
|
||
|
|
||
|
</template>
|
||
|
|
||
|
</v-img>
|
||
|
|
||
|
<v-card-title class="pb-2">
|
||
|
You can help us
|
||
|
</v-card-title>
|
||
|
|
||
|
<v-card-text class="pb-0">
|
||
|
|
||
|
<p class="text-left body-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.
|
||
|
<br><!--
|
||
|
Your donation would help us to focus better and ship faster. And your donations are much appreciated by our
|
||
|
team & families.
|
||
|
<br>-->
|
||
|
<br>
|
||
|
Sincerely,
|
||
|
Team NocoDB
|
||
|
</p>
|
||
|
</v-card-text>
|
||
|
|
||
|
<v-card-actions class="justify-center pb-6 mt-n1">
|
||
|
<v-btn @click.stop.prevent="$emit('close')" large>Use Freely</v-btn>
|
||
|
<v-btn color="primary" large>
|
||
|
<v-icon small color="red" class="mr-2">mdi-cards-heart</v-icon>
|
||
|
Sponsor Us
|
||
|
</v-btn>
|
||
|
</v-card-actions>
|
||
|
|
||
|
</v-card>
|
||
|
</v-overlay>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
name: "sponsorOverlay"
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style scoped>
|
||
|
|
||
|
</style>
|