chore(LINT-0001) fix lint errors

This commit is contained in:
Giancarmine Salucci
2026-03-27 03:01:37 +01:00
parent 7f7d806172
commit da661efc91
24 changed files with 114 additions and 69 deletions

View File

@@ -1,5 +1,6 @@
<script lang="ts">
import './layout.css';
import { resolve as resolveRoute } from '$app/paths';
import favicon from '$lib/assets/favicon.svg';
let { children } = $props();
@@ -15,7 +16,7 @@
<div class="mx-auto max-w-6xl px-4 sm:px-6 lg:px-8">
<div class="flex h-14 items-center justify-between">
<div class="flex items-center gap-6">
<a href="/" class="flex items-center gap-2 font-semibold text-gray-900">
<a href={resolveRoute('/')} class="flex items-center gap-2 font-semibold text-gray-900">
<svg
class="h-6 w-6 text-blue-600"
viewBox="0 0 24 24"
@@ -31,9 +32,15 @@
</svg>
<span>TrueRef</span>
</a>
<a href="/" class="text-sm text-gray-600 hover:text-gray-900"> Repositories </a>
<a href="/search" class="text-sm text-gray-600 hover:text-gray-900"> Search </a>
<a href="/settings" class="text-sm text-gray-600 hover:text-gray-900"> Settings </a>
<a href={resolveRoute('/')} class="text-sm text-gray-600 hover:text-gray-900">
Repositories
</a>
<a href={resolveRoute('/search')} class="text-sm text-gray-600 hover:text-gray-900">
Search
</a>
<a href={resolveRoute('/settings')} class="text-sm text-gray-600 hover:text-gray-900">
Settings
</a>
</div>
<span class="text-xs text-gray-400">Self-hosted documentation intelligence</span>
</div>