feat: make header title a link to home page

This commit is contained in:
2026-03-03 00:02:17 +00:00
parent bc8168e724
commit e98761a18e

View File

@@ -44,7 +44,7 @@ onMounted(() => {
<line x1="3" y1="18" x2="21" y2="18"></line>
</svg>
</button>
<h1 class="app-title">Tools App</h1>
<router-link to="/" class="app-title">Tools App</router-link>
</div>
<button
@@ -115,10 +115,11 @@ onMounted(() => {
.app-title {
margin: 0;
font-size: 1.5rem;
font-weight: 600;
background: var(--title-gradient);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
color: transparent;
text-decoration: none;
font-weight: bold;
}
</style>