1
0
Fork 0
mirror of https://github.com/elk-zone/elk.git synced 2025-03-23 01:50:45 +03:00
elk/components/nav/NavTitle.vue

10 lines
382 B
Vue
Raw Normal View History

2022-11-14 11:33:09 +08:00
<template>
<!-- Use external to force refresh page and jump to top of timeline -->
2022-11-25 18:46:25 -05: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-23 22:21:18 +08:00
<img aria-label="Elk Logo" src="/logo.svg" w-10 h-10>
2022-11-14 11:33:09 +08:00
<div>
Elk <sup text-sm italic text-secondary mt-1>alpha</sup>
2022-11-14 11:33:09 +08:00
</div>
</NuxtLink>
</template>