feat: add a link to report an issue

This commit is contained in:
Julien Calixte
2024-10-27 00:31:22 +02:00
parent 6da18fc6af
commit 07aa888731

View File

@@ -12,7 +12,18 @@ import { RouterLink, RouterView } from 'vue-router'
</nav>
</header>
<main>
<RouterView />
</main>
<footer>
<a
href="https://github.com/jcalixte/failwell/issues"
target="_blank"
rel="noopener noreferrer"
>report an issue</a
>
</footer>
</div>
</template>
@@ -32,4 +43,13 @@ nav {
img.logo {
max-width: 40px;
}
main {
flex: 1;
}
footer {
text-align: right;
font-size: 0.8rem;
}
</style>