fix: make HomeButton keyboard accessible

Replace <a> with <button> so the home logo receives tab focus.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Julien Calixte
2026-04-14 01:04:50 +02:00
parent 4c5116bc89
commit cfe5ef8fcd

View File

@@ -6,9 +6,9 @@ const goHome = () => router.push({ name: "Home" })
</script> </script>
<template> <template>
<a class="btn btn-ghost btn-circle btn-lg" @click="goHome"> <button class="btn btn-ghost btn-circle btn-lg" @click="goHome">
<img src="/favicon.png" alt="Remanso icon" class="remanso-logo" /> <img src="/favicon.png" alt="Remanso icon" class="remanso-logo" />
</a> </button>
</template> </template>
<style> <style>