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.
74 lines
2.6 KiB
74 lines
2.6 KiB
2 years ago
|
<script setup lang="ts">
|
||
|
import { enumColor as colors } from '#imports'
|
||
|
|
||
|
const { lang: currentLang } = useGlobal()
|
||
|
|
||
|
const isRtlLang = $computed(() => ['fa'].includes(currentLang.value))
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<a-list class="w-[300px] pa-3 elevation-4 rounded-xl mr-10" dense>
|
||
|
<a-list-item class="cursor-pointer">
|
||
|
<nuxt-link class="text-primary" to="https://github.com/nocodb/nocodb" target="_blank">
|
||
|
<div class="flex items-center text-sm">
|
||
|
<mdi-github class="mx-3 text-lg" />
|
||
|
<div v-if="isRtlLang">
|
||
|
<!-- us on Github -->
|
||
|
{{ $t('labels.community.starUs2') }}
|
||
|
<!-- Star -->
|
||
|
{{ $t('labels.community.starUs1') }}
|
||
|
<mdi-star-outline />
|
||
|
</div>
|
||
|
<div v-else class="flex items-center">
|
||
|
<!-- Star -->
|
||
|
{{ $t('labels.community.starUs1') }}
|
||
|
<mdi-star-outline class="mx-1" />
|
||
|
<!-- us on Github -->
|
||
|
{{ $t('labels.community.starUs2') }}
|
||
|
</div>
|
||
|
</div>
|
||
|
</nuxt-link>
|
||
|
</a-list-item>
|
||
|
<a-list-item>
|
||
|
<nuxt-link class="text-primary" to="https://calendly.com/nocodb-meeting" target="_blank">
|
||
|
<div class="flex items-center text-sm">
|
||
|
<mdi-calendar-month class="mx-3 text-lg" :color="colors.dark[3 % colors.dark.length]" />
|
||
|
<!-- Book a Free DEMO -->
|
||
|
<div>
|
||
|
{{ $t('labels.community.bookDemo') }}
|
||
|
</div>
|
||
|
</div>
|
||
|
</nuxt-link>
|
||
|
</a-list-item>
|
||
|
<a-list-item>
|
||
|
<nuxt-link class="text-primary" to="https://discord.gg/5RgZmkW" target="_blank">
|
||
|
<div class="flex items-center text-sm">
|
||
|
<mdi-discord class="mx-3 text-lg" :color="colors.dark[0 % colors.dark.length]" />
|
||
|
<!-- Get your questions answered -->
|
||
|
<div>
|
||
|
{{ $t('labels.community.getAnswered') }}
|
||
|
</div>
|
||
|
</div>
|
||
|
</nuxt-link>
|
||
|
</a-list-item>
|
||
|
<a-list-item>
|
||
|
<nuxt-link class="text-primary" to="https://twitter.com/NocoDB" target="_blank">
|
||
|
<div class="flex items-center text-sm">
|
||
|
<mdi-twitter class="mx-3 text-lg" :color="colors.dark[1 % colors.dark.length]" />
|
||
|
<!-- Follow NocoDB -->
|
||
|
<div>
|
||
|
{{ $t('labels.community.followNocodb') }}
|
||
|
</div>
|
||
|
</div>
|
||
|
</nuxt-link>
|
||
|
</a-list-item>
|
||
|
<a-list-item v-t="['e:hiring']">
|
||
|
<nuxt-link class="text-primary" target="_blank" to="http://careers.nocodb.com">
|
||
|
<div class="flex items-center text-sm">
|
||
|
<div class="ml-3">🚀 <span class="ml-2">We are Hiring!!!</span></div>
|
||
|
</div>
|
||
|
</nuxt-link>
|
||
|
</a-list-item>
|
||
|
</a-list>
|
||
|
</template>
|