initial commit

This commit is contained in:
2025-12-17 10:42:20 -05:00
commit 9912f0a4a7
35 changed files with 9573 additions and 0 deletions
+38
View File
@@ -0,0 +1,38 @@
import Link from "next/link";
export function Navigation() {
return (
<nav className="w-full border-b border-border/40">
<div className="container mx-auto px-6 py-4">
<div className="flex items-center justify-between">
<Link
href="/"
className="text-xl font-semibold text-foreground hover:text-foreground/80 transition-colors"
>
Muszyn
</Link>
<div className="flex gap-8">
<Link
href="/blog"
className="text-base text-muted-foreground hover:text-foreground transition-colors"
>
Blog
</Link>
<Link
href="/projects"
className="text-base text-muted-foreground hover:text-foreground transition-colors"
>
Projects
</Link>
<Link
href="/about"
className="text-base text-muted-foreground hover:text-foreground transition-colors"
>
About
</Link>
</div>
</div>
</div>
</nav>
);
}