2022-12-06 22:17:58 +00:00
|
|
|
<script setup lang="ts">
|
2022-12-08 13:30:56 +00:00
|
|
|
const env = useRuntimeConfig().public.env
|
|
|
|
const sub = env === 'local' ? 'dev' : env === 'staging' ? 'preview' : 'alpha'
|
2022-11-27 16:57:16 +00:00
|
|
|
</script>
|
|
|
|
|
2022-11-14 03:33:09 +00:00
|
|
|
<template>
|
2022-11-25 11:24:40 +00:00
|
|
|
<!-- Use external to force refresh page and jump to top of timeline -->
|
2022-12-28 07:00:49 +00:00
|
|
|
<NuxtLink
|
|
|
|
flex items-center gap-2
|
|
|
|
w-fit
|
|
|
|
py2 px-2 lg:px-3
|
|
|
|
text-2xl hover:bg-active
|
|
|
|
focus-visible:ring="2 current"
|
|
|
|
rounded-full
|
|
|
|
to="/"
|
|
|
|
external
|
|
|
|
>
|
2023-01-01 14:29:11 +00:00
|
|
|
<img :alt="$t('app_logo')" src="/logo.svg" shrink-0 aspect="1/1" sm:h-8 lg:h-10 class="rtl-flip">
|
2022-12-21 00:02:01 +00:00
|
|
|
<div hidden lg:block>
|
2022-11-29 23:25:29 +00:00
|
|
|
{{ $t('app_name') }} <sup text-sm italic text-secondary mt-1>{{ sub }}</sup>
|
2022-11-14 03:33:09 +00:00
|
|
|
</div>
|
|
|
|
</NuxtLink>
|
|
|
|
</template>
|