Editorial single-row navbar — bold wordmark, quiet bold links, and an outline pill CTA. Collapses to a clean full-height mobile menu.
Editorial single-row navbar built around a bold wordmark, a row of quiet-but-bold desktop links, and an outline pill CTA. On small screens it collapses to a full-width panel that drops beneath the bar with oversized stacked links and a full-bleed CTA.
Pro blocks install through the shadcn CLI with your license key and ship their full source. Docs and live previews stay open to everyone, so you can read every block's details first.
Swap YOUR_EMAIL and YOUR_KEY for the email and license key on your account. Find your license key on your account page.
Radix flavor
npx shadcn add "https://ui.beste.co/r/navbar59?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/navbar59?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/navbar59.tsx, the button12 component it uses for its CTA, and its dependencies.
The installed file exports navbar59Demo alongside the block: the exact props behind the preview above. Spread it to get a working navbar in one line.
import { Navbar59, navbar59Demo } from "@/components/beste/block/navbar59";
export default function Layout() {
return <Navbar59 {...navbar59Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Navbar59 } from "@/components/beste/block/navbar59";
export default function Layout() {
return (
<Navbar59
brand="Northwind"
links={[
{ label: "Work", href: "/work" },
{ label: "Studio", href: "/studio" },
{ label: "Journal", href: "/journal" },
]}
button={{ label: "Start a project", href: "/contact" }}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
brand | string | – | Wordmark text; omitted entirely when not set |
links | NavLink[] | [] | Desktop and mobile nav links |
button | { label: string; href: string } | – | Outline CTA next to the links; hidden entirely when not set |
className | string | – | Extra classes for the outer <header> |
NavLink: { label, href }.
useState toggle: clicking the hamburger reveals a full-width panel below the bar; there is no outside-click or Escape handling to auto-close it.lg (1024px).tone="outline"; the mobile CTA drops the outline tone and stretches full width with justify-between.navbar41
Two-tier studio navbar with an availability utility strip, square-mark wordmark, index-numbered links and a seal CTA.
navbar60
Full mega-menu navbar — bold links open three-column panels with parenthetical section labels, descriptions and a footer link. SSR-mounted panels, pill CTA and a stacked mobile menu.
navbar55
Navbar with an editorial split mega panel — eyebrow statement and seal CTA on the left, a numbered two-column project index in the middle and a tall studio image on the right.
navbar51
Two-row navbar with brand, availability status and seal CTA on top, and an underlined active-tab link row that scrolls horizontally on mobile.
navbar43
Dark studio navbar with a primary announcement bar, wordmark with tagline divider, uppercase links and a primary seal CTA.
navbar62
Navbar with a dark scrolling announcement bar on top — looping links that pause on hover and fade at the edges — over a clean wordmark row with a pill CTA.