We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b5c03e commit b7be65aCopy full SHA for b7be65a
1 file changed
src/routes/+page.svelte
@@ -66,6 +66,12 @@
66
<div class="header-container">
67
<a href="/" class="header-logo">OpenBoot</a>
68
<div class="header-right">
69
+ {#if $auth.user}
70
+ <a href="/dashboard" class="header-link">Dashboard</a>
71
+ {:else}
72
+ <a href="/login" class="header-link">Sign in</a>
73
+ {/if}
74
+ <a href="/docs" class="header-link">Docs</a>
75
<ThemeToggle />
76
</div>
77
@@ -320,7 +326,18 @@
320
326
.header-right {
321
327
display: flex;
322
328
align-items: center;
323
- gap: 12px;
329
+ gap: 16px;
330
+ }
331
+
332
+ .header-link {
333
+ font-size: 0.85rem;
334
+ font-weight: 500;
335
+ color: var(--text-secondary);
336
+ transition: color 0.2s;
337
338
339
+ .header-link:hover {
340
+ color: var(--text-primary);
324
341
}
325
342
343
/* ── Main ──────────────────────────────────────────── */
0 commit comments