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.
60 lines
1.3 KiB
60 lines
1.3 KiB
4 years ago
|
<template>
|
||
|
<v-overlay opacity=".98">
|
||
3 years ago
|
<v-card
|
||
|
light
|
||
|
width="450"
|
||
|
min-height="500"
|
||
|
class=""
|
||
|
href="https://github.com/sponsors/nocodb"
|
||
|
target="_blank"
|
||
|
>
|
||
4 years ago
|
<v-img src="ants-leaf-cutter.jpeg" class="mt-0" height="300">
|
||
3 years ago
|
<template #placeholder>
|
||
4 years ago
|
<v-skeleton-loader
|
||
|
height="300"
|
||
|
width="700"
|
||
3 years ago
|
type="image"
|
||
|
/>
|
||
4 years ago
|
</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.
|
||
3 years ago
|
<br>
|
||
4 years ago
|
<br>
|
||
|
Sincerely,
|
||
|
Team NocoDB
|
||
|
</p>
|
||
|
</v-card-text>
|
||
|
|
||
|
<v-card-actions class="justify-center pb-6 mt-n1">
|
||
3 years ago
|
<v-btn large @click.stop.prevent="$emit('close')">
|
||
|
Use Freely
|
||
|
</v-btn>
|
||
4 years ago
|
<v-btn color="primary" large>
|
||
3 years ago
|
<v-icon small color="red" class="mr-2">
|
||
|
mdi-cards-heart
|
||
|
</v-icon>
|
||
4 years ago
|
Sponsor Us
|
||
|
</v-btn>
|
||
|
</v-card-actions>
|
||
|
</v-card>
|
||
|
</v-overlay>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
3 years ago
|
name: 'SponsorOverlay'
|
||
4 years ago
|
}
|
||
|
</script>
|
||
|
|
||
|
<style scoped>
|
||
|
|
||
|
</style>
|