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

Two-tier navbar with a quiet top strip carrying an availability badge (with its live dot) alongside a row of utility links, sitting above a main row built around an oversized wordmark, a horizontal nav and a pill CTA. The top strip and the mobile toggle both collapse away below the lg breakpoint, leaving a plain wordmark-and-menu-button header on small screens.

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

Base UI flavor

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

This installs the block to components/beste/block/navbar65.tsx, the badge7 and button12 components it uses for the availability badge and CTA pill, and its dependencies.

Quick start

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

tsx
import { Navbar65, navbar65Demo } from "@/components/beste/block/navbar65";

export default function Layout() {
  return <Navbar65 {...navbar65Demo} />;
}

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

tsx
import { Navbar65 } from "@/components/beste/block/navbar65";

export default function Layout() {
  return (
    <Navbar65
      brand="Auralis"
      badge={{ label: "Available — Spring 2026" }}
      utilityLinks={[
        { label: "Instagram", href: "https://example.com/instagram" },
        { label: "Newsletter", href: "https://example.com/newsletter" },
      ]}
      links={[
        { label: "Work", href: "/work" },
        { label: "Studio", href: "/studio" },
        { label: "Journal", href: "/journal" },
      ]}
      button={{ label: "Say hello", href: "/contact" }}
    />
  );
}

Props

PropTypeDefaultDescription
brandstringWordmark text, rendered large in the main row and linked home
badge{ label: string }Availability badge shown in the top strip via badge7
utilityLinksNavLink[][]Secondary links shown at the right of the top strip and again in the mobile menu footer
linksNavLink[][]Primary nav links in the main row
button{ label: string; href: string }Pill CTA rendered with button12
classNamestringExtra classes for the outer <header>

NavLink: { label, href }.

Behavior notes

More Navigation blocks

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

navbar38

Dual-Row Navbar

Two-tier navbar with slim top bar for announcements and contact info above main navigation. Perfect for e-commerce and service businesses displaying promotions and support details.

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

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.

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

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.