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

Two-row navbar with a top bar holding the wordmark, an availability status dot, and a seal call-to-action, and a second ruled row of tab-style links where the active tab gets an underline accent. Unlike the other navbars in this set it has no hamburger menu; on narrow screens the tab row simply scrolls horizontally.

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

Base UI flavor

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

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

Quick start

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

tsx
import { Navbar51, navbar51Demo } from "@/components/beste/block/navbar51";

export default function Layout() {
  return <Navbar51 {...navbar51Demo} />;
}

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

tsx
import { Navbar51 } from "@/components/beste/block/navbar51";

export default function Layout() {
  return (
    <Navbar51
      brand="Polaris"
      statusLabel="Booking new projects for Q3"
      links={[
        { label: "Overview", href: "/" },
        { label: "Work", href: "/work", isActive: true },
        { label: "Services", href: "/services" },
      ]}
      cta={{ label: "Start a Project", href: "/contact" }}
    />
  );
}

Props

PropTypeDefaultDescription
brandstringWordmark shown in the top row
statusLabelstringAvailability text with a dot indicator, hidden below lg
linksTabLink[][]Underlined tab row; the row is skipped entirely if empty
ctaCtaLinkbutton1 shown from sm up, replaced by a square icon-only arrow link below sm
classNamestringExtra classes for the outer <header>
ts
type TabLink = {
  label: string;
  href: string;
  isActive?: boolean;
};

type CtaLink = { label: string; href: string };

Behavior notes

More Navigation blocks

View all Navigation
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

navbar36

Tab-Style Navbar

Navbar with tab-style navigation supporting underline or pill active states for app-like navigation. Perfect for dashboards and admin panels with section-based interfaces.

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

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

navbar41

Editorial Studio Navbar

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

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.