A light editorial navbar with a lowercase wordmark, soft muted nav pills that reveal hover dropdowns, a solid accent call to action, and a collapsing mobile menu.
A light editorial navbar built around soft muted pills instead of plain text links: each top-level item sits in a rounded bg-muted pill, and items that carry a links array grow a chevron and reveal a floating dropdown card on hover. A lowercase wordmark sits on the left and a solid accent call-to-action sits on the right, with everything collapsing into a stacked mobile menu below the lg breakpoint.
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/navbar71?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/navbar71?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/navbar71.tsx, the button21 component it uses for its call-to-action, and its dependencies.
The installed file exports navbar71Demo alongside the block: the exact props behind the preview above. Spread it to get a working navbar in one line.
import { Navbar71, navbar71Demo } from "@/components/beste/block/navbar71";
export default function Layout() {
return <Navbar71 {...navbar71Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Navbar71 } from "@/components/beste/block/navbar71";
export default function Layout() {
return (
<Navbar71
brand="Acme"
items={[
{
label: "Platform",
href: "/platform",
links: [
{ label: "Scheduling", href: "/platform/scheduling" },
{ label: "Billing", href: "/platform/billing" },
],
},
{ label: "Pricing", href: "/pricing" },
]}
button={{ label: "Request access", href: "/signup" }}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
brand | string | – | Wordmark text, rendered lowercase, linked to https://beste.co |
items | NavItem[] | [] | Top-level nav pills, in order |
button | ActionLink | – | Accent call-to-action rendered via Button21; omit to hide it |
className | string | – | Extra classes for the outer <header> |
type NavItem = { label: string; href: string; links?: NavLink[] };
type NavLink = { label: string; href: string };
type ActionLink = { label: string; href: string };links array is non-empty; otherwise the pill is a plain link with no chevron.open state.lg) is a single toggled panel; any item's sub-links are shown fully expanded underneath it, not as a nested accordion.navbar74
A navbar contained in a softly rounded, bordered capsule with a lowercase wordmark, uppercase links, an accent call to action, and a matching mobile panel.
navbar73
A navbar with a dark announcement strip above a hairline-bordered row carrying a lowercase wordmark, uppercase links, a sign-in link, an accent call to action, and a mobile menu.
navbar72
A minimal navbar with a lowercase wordmark, absolutely centered uppercase text links, an accent call to action, and a collapsing mobile menu.