summaryrefslogtreecommitdiff
path: root/src/components/header.tsx
blob: 1b03ba54d23bdb51b9e15150b2524909eb95d906 (plain)
1
2
3
4
5
6
7
8
9
10
11
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">
        <Link to="/">Waku starter</Link>
      </h2>
    </header>
  );
};