Skip to content

Header

Header component

Storybook

import { Header } from "@/brand/components/header"
import { Button } from "@/ui/button"
;<Header
logo={
<a href="/" className="font-bold text-lg">
Logo
</a>
}
>
<Button variant="ghost" asChild>
<a href="/">Lorem</a>
</Button>
<Button variant="ghost" asChild>
<a href="/">Ipsum</a>
</Button>
<Button variant="ghost" asChild>
<a href="/">Dolor</a>
</Button>
<Button variant="ghost" asChild>
<a href="/">Sit</a>
</Button>
<Button variant="default" asChild>
<a href="/">Amet</a>
</Button>
</Header>