2022-12-07 07:17:58 +09:00
|
|
|
<script setup lang="ts">
|
2023-01-04 22:26:30 +09:00
|
|
|
import { buildInfo } from 'virtual:build-info'
|
|
|
|
|
|
|
|
const { env } = buildInfo
|
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-12-28 16:00:49 +09:00
|
|
|
<NuxtLink
|
2023-01-05 20:33:00 +09:00
|
|
|
flex items-end gap-4
|
|
|
|
py2 px-5
|
2023-01-05 08:17:30 +09:00
|
|
|
text-2xl
|
2022-12-28 16:00:49 +09:00
|
|
|
focus-visible:ring="2 current"
|
|
|
|
to="/"
|
|
|
|
external
|
|
|
|
>
|
2023-01-03 22:48:13 +09:00
|
|
|
<img :alt="$t('app_logo')" src="/logo.svg" shrink-0 aspect="1/1" sm:h-8 xl:h-10 class="rtl-flip">
|
|
|
|
<div hidden xl:block>
|
2023-01-04 22:26:30 +09:00
|
|
|
{{ $t('app_name') }} <sup text-sm italic text-secondary mt-1>{{ env === 'release' ? 'alpha' : env }}</sup>
|
2022-11-14 12:33:09 +09:00
|
|
|
</div>
|
|
|
|
</NuxtLink>
|
|
|
|
</template>
|