Skip to content
Snippets Groups Projects
Footer.vue 704 B
Newer Older
  • Learn to ignore specific revisions
  •   <footer class="tw-p-2 tw-bg-gray-800 tw-text-white/50">
    
        <div class="tw-flex tw-gap-2">
    
          <div class="tw-flex tw-gap-2 tw-mr-auto">
            <span> aura/<b>dashboard</b> v{{ version }}</span>
            <span>|</span>
    
            <a href="https://docs.aura.radio">{{ t('generalDocumentation') }}</a>
    
            <span>|</span>
    
            <router-link :to="{ name: 'credits' }">Credits</router-link>
          </div>
          {{ t('footer.tagline') }}
        </div>
    
    Konrad Mohrfeldt's avatar
    Konrad Mohrfeldt committed
      </footer>
    
    <script lang="ts" setup>
    import { useI18n } from '@/i18n'
    import { useAuthStore } from '@/stores/auth'
    
    const version = import.meta.env.VUE_APP_VERSION
    const { t } = useI18n()
    const authStore = useAuthStore()
    </script>