Update components/navbar/index.tsx

This commit is contained in:
kleap-admin 2026-01-16 16:41:04 +00:00
parent 9c246129cd
commit 19bda7603f
1 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,15 @@
"use client";
import Link from "next/link";
import { Logo } from "../Logo";
export function NavBar() {
return (
<nav className="fixed top-0 left-0 right-0 z-50 flex justify-center p-4">
<div className="bg-white/80 backdrop-blur-md border-2 border-black shadow-[4px_4px_0px_0px_rgba(0,0,0,1)] px-6 py-2 rounded-full">
<Link href="/">
<Logo />
</Link>
</div>
</nav>
);
}