Add router link to the startpage in the navbar

This commit is contained in:
2026-05-10 17:27:57 +02:00
parent 9f60c23c60
commit 1097694a8e
2 changed files with 11 additions and 1 deletions
+3 -1
View File
@@ -16,7 +16,9 @@ limitations under the License.
<template>
<nav class="global-nav">
<span id="logo">Seekra</span>
<RouterLink to="/" class="link button link">
<span id="logo">Seekra</span>
</RouterLink>
<ul class="right-links">
</ul>
</nav>
+8
View File
@@ -24,3 +24,11 @@ body {
display: flex;
flex-direction: column;
}
.link {
text-decoration: none;
}
.link:hover:not(.button-link) {
text-decoration: underline;
}