Two-row navbar with brand, availability status and seal CTA on top, and an underlined active-tab link row that scrolls horizontally on mobile.
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.
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/navbar51?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
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.
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.
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:
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" }}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
brand | string | – | Wordmark shown in the top row |
statusLabel | string | – | Availability text with a dot indicator, hidden below lg |
links | TabLink[] | [] | Underlined tab row; the row is skipped entirely if empty |
cta | CtaLink | – | button1 shown from sm up, replaced by a square icon-only arrow link below sm |
className | string | – | Extra classes for the outer <header> |
type TabLink = {
label: string;
href: string;
isActive?: boolean;
};
type CtaLink = { label: string; href: string };useState and no hamburger or drawer at all; every breakpoint change is pure CSS.overflow-x-auto on narrow screens instead of collapsing into a menu; the tabs stay centered when they fit and fall back to a scrollable, left-aligned row when they overflow.isActive: true) gets a bottom accent bar and full-foreground text color; all others are muted with a hover state.button1 from sm up, and a square icon-only arrow link below sm; only one is visible at a time.links is empty.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.
navbar36
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.
navbar65
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.
navbar59
Editorial single-row navbar — bold wordmark, quiet bold links, and an outline pill CTA. Collapses to a clean full-height mobile menu.
navbar41
Two-tier studio navbar with an availability utility strip, square-mark wordmark, index-numbered links and a seal CTA.
navbar56
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.