Editorial Studio Navbar

Two-tier studio navbar with an availability utility strip, square-mark wordmark, index-numbered links and a seal CTA.

PRO

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.

Upgrade to Pro

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.

Installation

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

bash
npx shadcn add "https://ui.beste.co/r/navbar41?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

bash
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.

Quick start

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.

tsx
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:

tsx
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" }}
    />
  );
}

Props

PropTypeDefaultDescription
brandstringWordmark text next to the square mark
statusLabelstringAvailability text in the utility strip
locationLabelstringLocation text in the utility strip, hidden below md
emailstringRenders as a mailto: link in the utility strip, repeated in the mobile menu
linksNavLink[][]Nav links, rendered with a zero-padded index prefix on both desktop and mobile
ctaCtaLinkSeal button rendered via Button1, shown on desktop and repeated in the mobile menu
classNamestringExtra classes for the outer <header>

NavLink / CtaLink: { label: string; href: string }.

Behavior notes

More Navigation blocks

View all Navigation
PRO

navbar59

Studio Bar Navbar

Editorial single-row navbar — bold wordmark, quiet bold links, and an outline pill CTA. Collapses to a clean full-height mobile menu.

PRO

navbar65

Status Tier Navbar

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.

PRO

navbar55

Editorial Mega Menu Navbar

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.

PRO

navbar51

Tab Bar Navbar

Two-row navbar with brand, availability status and seal CTA on top, and an underlined active-tab link row that scrolls horizontally on mobile.

PRO

navbar44

Centered Logo Navbar

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.

PRO

navbar56

Giant Wordmark Navbar

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.