Letterhead Navbar

Letterhead-style navbar with a stacked brand block beside stacked rows of location, email and links, closed off by a seal CTA on the right.

PRO

Letterhead-style navbar with a bordered brand block (wordmark plus tagline) beside stacked utility and link rows, letting a location label and mailto link sit above the nav links, closed off by a seal call-to-action on the far right. Below lg it collapses into a hamburger-triggered mobile menu that repeats the links, CTA, and location/email footer.

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/navbar52?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

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

This installs the block to components/beste/block/navbar52.tsx and the button1 component it uses for its call-to-action.

Quick start

The installed file exports navbar52Demo alongside the block: the exact props behind the preview above. Spread it to get a working navbar in one line.

tsx
import { Navbar52, navbar52Demo } from "@/components/beste/block/navbar52";

export default function Layout() {
  return <Navbar52 {...navbar52Demo} />;
}

Then replace the demo with your own props. Written out, a trimmed setup looks like this:

tsx
import { Navbar52 } from "@/components/beste/block/navbar52";

export default function Layout() {
  return (
    <Navbar52
      brand="Polaris"
      tagline="Brand and Product Studio"
      locationLabel="Istanbul / Worldwide"
      email="studio@polaris.co"
      links={[
        { label: "Work", href: "/work" },
        { label: "Studio", href: "/studio" },
      ]}
      cta={{ label: "Start a Project", href: "/contact" }}
    />
  );
}

Props

PropTypeDefaultDescription
brandstringWordmark shown in the bordered brand block
taglinestringUppercase line under the brand, inside the same block
locationLabelstringLocation text in the utility row above the links
emailstringRendered as a mailto: link in the utility row and the mobile menu footer
linksNavLink[][]Links row under the utility row on desktop, or listed in the mobile menu
ctaCtaLinkbutton1 shown at the far right on desktop and full-width in the mobile menu
classNamestringExtra classes for the outer <header>
ts
type NavLink = { label: string; href: string };
type CtaLink = { label: string; href: string };

Behavior notes

More Navigation blocks

View all Navigation
PRO

navbar48

Masthead Navbar

Print-inspired masthead navbar with a giant centered wordmark flanked by studio meta and contact, over a ruled row of spread-out links with an inline seal CTA.

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.

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

navbar58

Monogram Navbar

Minimal stacked navbar — a large primary logo square with the wordmark tucked into its corner, over a quiet ruled row of uppercase links. No buttons, no hamburger.

PRO

navbar67

Poster Split Navbar

Poster-scale navbar — an oversized wordmark anchors the left while a right column stacks the nav, a pill CTA and a parenthetical label. Collapses to a stacked mobile menu.