feat: set up basic app shell components
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
import Link from "next/link";
|
||||
import Nav from "./Nav";
|
||||
|
||||
export default function Header() {
|
||||
return (
|
||||
<header className="border-b border-neutral-800">
|
||||
<div className="p-6 justify-start flex items-center flex gap-5">
|
||||
<Link
|
||||
href="/"
|
||||
className="text-2xl font-semibold text-neutral-100 hover:text-white"
|
||||
>
|
||||
Angel Mankel
|
||||
</Link>
|
||||
<Nav />
|
||||
</div>
|
||||
</header>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user