2022-11-28 01:57:16 +09:00
|
|
|
<script setup>
|
2022-12-07 06:09:47 +09:00
|
|
|
const sub = process.dev ? 'dev' : useRuntimeConfig().public.env === 'staging' ? 'preview' : 'alpha'
|
2022-11-28 01:57:16 +09:00
|
|
|
</script>
|
|
|
|
|
2022-11-14 12:33:09 +09:00
|
|
|
<template>
|
2022-11-25 20:24:40 +09:00
|
|
|
<!-- Use external to force refresh page and jump to top of timeline -->
|
2022-11-26 08:46:25 +09: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-30 06:13:21 +09:00
|
|
|
<img alt="Elk Logo" src="/logo.svg" w-10 h-10>
|
2022-11-14 12:33:09 +09:00
|
|
|
<div>
|
2022-11-30 08:25:29 +09:00
|
|
|
{{ $t('app_name') }} <sup text-sm italic text-secondary mt-1>{{ sub }}</sup>
|
2022-11-14 12:33:09 +09:00
|
|
|
</div>
|
|
|
|
</NuxtLink>
|
|
|
|
</template>
|