1
0
Fork 1
mirror of https://github.com/elk-zone/elk.git synced 2024-07-27 16:36:47 +01:00
elk/components/nav/NavTitle.vue

9 lines
221 B
Vue
Raw Normal View History

2022-11-14 03:33:09 +00:00
<template>
2022-11-23 14:21:18 +00:00
<NuxtLink flex items-center text-2xl gap-2 to="/">
<img aria-label="Elk Logo" src="/logo.svg" w-10 h-10>
2022-11-14 03:33:09 +00:00
<div>
2022-11-23 13:06:27 +00:00
Elk <sup text-sm italic op50 mt-1>alpha</sup>
2022-11-14 03:33:09 +00:00
</div>
</NuxtLink>
</template>