summaryrefslogtreecommitdiff
path: root/app/src/components/header.tsx
blob: 390043bb12a4a874fecf1c5712e02ea49ab97ee7 (plain)
1
2
3
4
5
6
7
8
9
import { Link } from "waku";

export const Header = () => {
  return (
    <header className="flex items-center gap-4 p-6 lg:fixed lg:left-0 lg:top-0">
      <h2 className="text-lg font-bold tracking-tight"></h2>
    </header>
  );
};