furhter bug fixes and updates

This commit is contained in:
jenz
2026-08-22 17:10:27 +02:00
parent 9e8e8378a2
commit 16bb9e14a5
18 changed files with 1070 additions and 256 deletions
@@ -19,7 +19,7 @@ export default function RootLayout({ children }: { children: React.ReactNode })
<html lang="en">
<body>
<div className="min-h-screen flex flex-col">
<header className="border-b border-base-border">
<header className="border-b border-base-border sticky top-0 z-10 bg-base/80 backdrop-blur-md">
<div className="max-w-6xl mx-auto px-6 py-4 flex items-center justify-between">
<Link href="/" className="flex items-center gap-2">
<span className="w-2 h-2 rounded-full bg-accent shadow-[0_0_8px_theme(colors.accent.DEFAULT)]" />
@@ -32,9 +32,10 @@ export default function RootLayout({ children }: { children: React.ReactNode })
<Link
key={item.href}
href={item.href}
className="text-sm text-ink-muted hover:text-accent transition-colors"
className="relative text-sm text-ink-muted hover:text-accent transition-colors group py-1"
>
{item.label}
<span className="absolute left-0 -bottom-0.5 h-px w-0 bg-accent transition-all duration-200 group-hover:w-full" />
</Link>
))}
</nav>