elk/components/nav/NavTitle.vue
Shinigami fed9849016
feat: jump to top after clicking logo (#86)
Co-authored-by: Daniel Roe <daniel@roe.dev>
2022-11-25 19:24:40 +08:00

10 lines
304 B
Vue

<template>
<!-- Use external to force refresh page and jump to top of timeline -->
<NuxtLink flex items-center text-2xl gap-2 to="/" external>
<img aria-label="Elk Logo" src="/logo.svg" w-10 h-10>
<div>
Elk <sup text-sm italic op50 mt-1>alpha</sup>
</div>
</NuxtLink>
</template>