Two-tier studio navbar with an availability utility strip, square-mark wordmark, index-numbered links and a seal CTA.
Two-tier studio navbar: a thin utility strip carries an availability dot, a location label and a mailto email link, and the main row pairs a square-mark wordmark with index-numbered links ("01", "02", ...) and a seal CTA. Below lg both rows collapse into a single bar with a hamburger toggle that opens a full-width mobile menu.
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/navbar41?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/navbar41?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/navbar41.tsx and the button1 component it uses for its call-to-action.
The installed file exports navbar41Demo alongside the block: the exact props behind the preview above. Spread it to get a working navbar in one line.
import { Navbar41, navbar41Demo } from "@/components/beste/block/navbar41";
export default function Layout() {
return <Navbar41 {...navbar41Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Navbar41 } from "@/components/beste/block/navbar41";
export default function Layout() {
return (
<Navbar41
brand="Polaris"
statusLabel="Booking new projects for Q3"
locationLabel="Istanbul / Worldwide"
email="studio@polaris.co"
links={[
{ label: "Work", href: "/work" },
{ label: "Studio", href: "/studio" },
{ label: "Contact", href: "/contact" },
]}
cta={{ label: "Start a Project", href: "/contact" }}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
brand | string | – | Wordmark text next to the square mark |
statusLabel | string | – | Availability text in the utility strip |
locationLabel | string | – | Location text in the utility strip, hidden below md |
email | string | – | Renders as a mailto: link in the utility strip, repeated in the mobile menu |
links | NavLink[] | [] | Nav links, rendered with a zero-padded index prefix on both desktop and mobile |
cta | CtaLink | – | Seal button rendered via Button1, shown on desktop and repeated in the mobile menu |
className | string | – | Extra classes for the outer <header> |
NavLink / CtaLink: { label: string; href: string }.
{open && ...}), not SSR-mounted and CSS-hidden; it toggles via a hamburger button visible below lg.navbar59
Editorial single-row navbar — bold wordmark, quiet bold links, and an outline pill CTA. Collapses to a clean full-height mobile menu.
navbar65
Two-tier navbar — a top strip carries an availability badge with a live dot and utility links, over a main row with an oversized wordmark, nav and pill CTA.
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.
navbar44
Symmetric navbar with links on the left, a square-mark wordmark centered and a seal CTA on the right, plus a tile-grid mobile menu.
navbar56
Typographic statement navbar — a hairline row of index-numbered links and availability above a giant wordmark with a primary square, studio meta and seal CTA.