chore: update components folder structure, add constants, update existing layout components, scaffold pages

This commit is contained in:
2026-05-27 19:52:41 -07:00
parent 6193c57655
commit 50fadddbe3
16 changed files with 228 additions and 237 deletions
+8 -10
View File
@@ -3,16 +3,14 @@ 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 className="mx-auto w-full max-w-2xl px-6 py-5 flex items-center justify-between">
<Link
href="/"
className="text-sm font-semibold text-neutral-100 hover:text-white"
>
Angel Mankel
</Link>
<Nav />
</header>
);
}