Grid Cell Navbar

Table-inspired navbar with full-height bordered link cells, an availability cell and a dark full-height seal CTA cell.

PRO

Table-inspired navbar built from full-height, border-divided cells: the wordmark, each nav link, an availability cell and a dark seal CTA cell all sit flush against one another, sharing borders like spreadsheet columns. The CTA cell inverts to bg-foreground with an arrow icon that slides right on hover; below lg the cell row collapses to a hamburger-triggered 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/navbar42?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

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

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

Quick start

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

tsx
import { Navbar42, navbar42Demo } from "@/components/beste/block/navbar42";

export default function Layout() {
  return <Navbar42 {...navbar42Demo} />;
}

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

tsx
import { Navbar42 } from "@/components/beste/block/navbar42";

export default function Layout() {
  return (
    <Navbar42
      brand="Polaris"
      statusLabel="Open for work"
      links={[
        { label: "Work", href: "/work" },
        { label: "Studio", href: "/studio" },
        { label: "Journal", href: "/journal" },
      ]}
      cta={{ label: "Start a Project", href: "/contact" }}
    />
  );
}

Props

PropTypeDefaultDescription
brandstringWordmark, rendered in its own bordered cell
statusLabelstringAvailability text in a bordered cell, hidden below lg
linksNavLink[][]Nav links, each rendered as its own full-height bordered cell
ctaCtaLinkDark full-height seal cell with an arrow icon, hidden below lg
classNamestringExtra classes for the outer <header>

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

Behavior notes

More Navigation blocks

View all Navigation
PRO

navbar45

Fullscreen Overlay Navbar

Dark navbar with a hamburger menu cell that opens a fullscreen overlay — the panel and its centered links cascade down from the top, with a contact footer.

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

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

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

navbar53

Dark Mega Menu Navbar

Dark studio navbar whose Services item opens a mega panel with three eyebrow-titled link columns and a bordered booking card with a seal CTA.

PRO

navbar49

Drawer Navbar

Minimal navbar with an availability status whose menu opens a dark right-side drawer — numbered links float in with a stagger over a backdrop, with a seal CTA and socials below.