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.
Poster-scale navbar built as a two-column split: a very large wordmark (up to text-7xl on large screens) anchors the left side, while a right-hand column stacks the nav links, a pill CTA and a parenthetical badge underneath each other. It collapses to 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/navbar67?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/navbar67?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/navbar67.tsx, the badge7 and button12 components it uses for the parenthetical badge and the CTA pill, and its dependencies.
The installed file exports navbar67Demo alongside the block: the exact props behind the preview above. Spread it to get a working navbar in one line.
import { Navbar67, navbar67Demo } from "@/components/beste/block/navbar67";
export default function Layout() {
return <Navbar67 {...navbar67Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Navbar67 } from "@/components/beste/block/navbar67";
export default function Layout() {
return (
<Navbar67
brand="Auralis"
badge={{ label: "Navigate" }}
links={[
{ label: "Work", href: "/work" },
{ label: "Studio", href: "/studio" },
{ label: "Journal", href: "/journal" },
]}
button={{ label: "Make something", href: "/contact" }}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
brand | string | – | Oversized wordmark text on the left, linked home |
badge | { label: string } | – | Small badge7 label placed under the button in the right-hand stack |
links | NavLink[] | [] | Nav links, shown as a row above the button on desktop |
button | { label: string; href: string } | – | Pill CTA rendered with button12 |
className | string | – | Extra classes for the outer <header> |
NavLink: { label, href }.
lg and up) the right column stacks in order: nav links row, then the CTA button, then the badge, all right-aligned under the wordmark.lg, only the wordmark and a mobile toggle button (Menu/X icon swap) show in the header row; the badge is not shown at all on mobile, only in the desktop stack.open is true, listing links as large stacked links followed by the full-width button; tapping a link closes the menu.navbar58
Minimal stacked navbar — a large primary logo square with the wordmark tucked into its corner, over a quiet ruled row of uppercase links. No buttons, no hamburger.
navbar59
Editorial single-row navbar — bold wordmark, quiet bold links, and an outline pill CTA. Collapses to a clean full-height mobile menu.
navbar63
A floating rounded-full navbar island resting on a muted band — wordmark, quiet links and a pill CTA, with a rounded mobile menu card that drops below.
navbar30
Symmetrical navbar with centered logo flanked by navigation links on both sides and dropdown menus. Perfect for fashion brands and lifestyle sites wanting balanced visual hierarchy.
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.
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.