17 lines
430 B
TypeScript
17 lines
430 B
TypeScript
import Link from "next/link";
|
|
import Nav from "./Nav";
|
|
|
|
export default function Header() {
|
|
return (
|
|
<header className="mx-auto w-full max-w-4xl px-6 py-5 flex items-center justify-between sticky top-0 z-50 bg-[#0a0a0a]/70 backdrop-blur-lg">
|
|
<Link
|
|
href="/"
|
|
className="text-sm font-semibold text-neutral-100 hover:text-white"
|
|
>
|
|
Angel Mankel
|
|
</Link>
|
|
<Nav />
|
|
</header>
|
|
);
|
|
}
|