elk/components/nav/NavTitle.vue

14 lines
522 B
Vue
Raw Normal View History

2022-11-27 17:57:16 +01:00
<script setup>
const sub = process.dev ? 'dev' : useRuntimeConfig().public.env === 'staging' ? 'preview' : 'alpha'
2022-11-27 17:57:16 +01:00
</script>
2022-11-14 04:33:09 +01:00
<template>
<!-- Use external to force refresh page and jump to top of timeline -->
2022-11-26 00:46:25 +01:00
<NuxtLink flex px3 py2 items-center text-2xl gap-2 hover:bg-active focus-visible:ring="2 current" rounded-full to="/" external>
2022-11-29 22:13:21 +01:00
<img alt="Elk Logo" src="/logo.svg" w-10 h-10>
2022-11-14 04:33:09 +01:00
<div>
2022-11-30 00:25:29 +01:00
{{ $t('app_name') }} <sup text-sm italic text-secondary mt-1>{{ sub }}</sup>
2022-11-14 04:33:09 +01:00
</div>
</NuxtLink>
</template>