1
0
mirror of https://github.com/elk-zone/elk synced 2024-12-03 01:08:07 +09:00
elk/components/nav/NavTitle.vue

10 lines
304 B
Vue
Raw Normal View History

2022-11-14 12:33:09 +09:00
<template>
<!-- Use external to force refresh page and jump to top of timeline -->
<NuxtLink flex items-center text-2xl gap-2 to="/" external>
2022-11-23 23:21:18 +09:00
<img aria-label="Elk Logo" src="/logo.svg" w-10 h-10>
2022-11-14 12:33:09 +09:00
<div>
2022-11-23 22:06:27 +09:00
Elk <sup text-sm italic op50 mt-1>alpha</sup>
2022-11-14 12:33:09 +09:00
</div>
</NuxtLink>
</template>