Skip to content

Commit

Permalink
fix(web): clean up header
Browse files Browse the repository at this point in the history
  • Loading branch information
superical committed Nov 10, 2023
1 parent 5716c0a commit 4c9bfa3
Showing 1 changed file with 1 addition and 15 deletions.
16 changes: 1 addition & 15 deletions packages/web/components/ui/header.tsx
Original file line number Diff line number Diff line change
@@ -1,17 +1,3 @@
import Link from "next/link";

export default function Header() {
return (
<header className="absolute w-full z-30">
<div className="max-w-6xl mx-auto px-4 sm:px-6">
<div className="flex items-center justify-between h-20">
{/* Site branding */}
<div className="shrink-0 mr-4">
{/* Logo */}

</div>
</div>
</div>
</header>
);
return <header className="absolute w-full z-30" />;
}

0 comments on commit 4c9bfa3

Please sign in to comment.