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.
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.
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.
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
npx shadcn add "https://ui.beste.co/r/navbar65?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
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.
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.
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:
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" }}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
brand | string | – | Wordmark text, rendered large in the main row and linked home |
badge | { label: string } | – | Availability badge shown in the top strip via badge7 |
utilityLinks | NavLink[] | [] | Secondary links shown at the right of the top strip and again in the mobile menu footer |
links | NavLink[] | [] | Primary nav links in the main row |
button | { label: string; href: string } | – | Pill CTA rendered with button12 |
className | string | – | Extra classes for the outer <header> |
NavLink: { label, href }.
badge or a non-empty utilityLinks is supplied, and only from lg upward; below that breakpoint it disappears entirely rather than reflowing.open is true), toggled by the menu button which swaps between the Lucide Menu and X icons.links, utilityLinks, and button in a stacked layout below a top border; tapping any link or the CTA closes the menu.badge and utilityLinks render only in the desktop top strip; on mobile, utilityLinks appears as a wrapped row under the nav links instead.navbar41
Two-tier studio navbar with an availability utility strip, square-mark wordmark, index-numbered links and a seal CTA.
navbar38
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.
navbar51
Two-row navbar with brand, availability status and seal CTA on top, and an underlined active-tab link row that scrolls horizontally on mobile.
navbar49
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.
navbar44
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.
navbar67
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.