2022-12-06 22:17:58 +00:00
|
|
|
<script setup lang="ts">
|
2023-01-04 13:26:30 +00:00
|
|
|
import { buildInfo } from 'virtual:build-info'
|
|
|
|
|
|
|
|
const { env } = buildInfo
|
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 -->
|
2023-01-05 12:35:08 +00:00
|
|
|
<div flex justify-between>
|
|
|
|
<NuxtLink
|
|
|
|
flex items-end gap-4
|
|
|
|
py2 px-5
|
|
|
|
text-2xl
|
|
|
|
focus-visible:ring="2 current"
|
|
|
|
to="/"
|
|
|
|
external
|
|
|
|
>
|
|
|
|
<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>
|
|
|
|
{{ $t('app_name') }} <sup text-sm italic text-secondary mt-1>{{ env === 'release' ? 'alpha' : env }}</sup>
|
|
|
|
</div>
|
|
|
|
</NuxtLink>
|
|
|
|
<div hidden xl:flex items-center me-8 mt-2>
|
|
|
|
<NuxtLink
|
2023-01-06 17:46:06 +00:00
|
|
|
:aria-label="$t('nav.back')"
|
2023-01-05 12:35:08 +00:00
|
|
|
@click="$router.go(-1)"
|
|
|
|
>
|
|
|
|
<div i-ri:arrow-left-line class="rtl-flip" btn-text />
|
|
|
|
</NuxtLink>
|
2022-11-14 03:33:09 +00:00
|
|
|
</div>
|
2023-01-05 12:35:08 +00:00
|
|
|
</div>
|
2022-11-14 03:33:09 +00:00
|
|
|
</template>
|