Print-inspired masthead navbar with a giant centered wordmark flanked by studio meta and contact, over a ruled row of spread-out links with an inline seal CTA.
Print-inspired masthead navbar built as a three-column grid: a small uppercase studio label on the left, a giant centered wordmark, and a contact link on the right, all sitting above a ruled row of spread-out uppercase links closed off by an inline seal-style call-to-action. Below lg the ruled row and CTA drop into a centered hamburger menu.
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/navbar48?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/navbar48?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/navbar48.tsx and its dependencies.
The installed file exports navbar48Demo alongside the block: the exact props behind the preview above. Spread it to get a working navbar in one line.
import { Navbar48, navbar48Demo } from "@/components/beste/block/navbar48";
export default function Layout() {
return <Navbar48 {...navbar48Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Navbar48 } from "@/components/beste/block/navbar48";
export default function Layout() {
return (
<Navbar48
brand="Polaris"
metaLabel="Independent Studio, Est. 2014"
contactLabel="studio@polaris.co"
contactHref="mailto:studio@polaris.co"
links={[
{ label: "Work", href: "/work" },
{ label: "Studio", href: "/studio" },
{ label: "Journal", href: "/journal" },
]}
cta={{ label: "Start a Project", href: "/contact" }}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
brand | string | – | Giant centered wordmark text |
metaLabel | string | – | Small uppercase studio label shown left of the wordmark, hidden below md |
contactLabel | string | – | Contact text (e.g. an email address) shown right of the wordmark on desktop and in the mobile menu |
contactHref | string | – | href for the contact link, paired with contactLabel |
links | NavLink[] | [] | Ruled nav row links, spread across the row with the CTA |
cta | CtaLink | – | Inline seal-style link with a small primary arrow badge, shown at the end of the ruled row and in the mobile menu |
className | string | – | Extra classes for the outer <header> |
type NavLink = { label: string; href: string };
type CtaLink = { label: string; href: string };open boolean.lg and up; below that it collapses into the hamburger-triggered mobile menu.metaLabel is hidden below md; an empty <span> fills its grid cell on mobile so the wordmark stays centered.button1 component here; it is a plain link with a small primary square badge holding an arrow icon, rendered identically in the desktop row and the mobile menu.{open && ...}), not SSR-mounted.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.
navbar52
Letterhead-style navbar with a stacked brand block beside stacked rows of location, email and links, closed off by a seal CTA on the right.
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.
navbar41
Two-tier studio navbar with an availability utility strip, square-mark wordmark, index-numbered links and a seal CTA.
navbar57
Typographic navbar where the links are the heroes — a hairline brand row above a full-width spread of giant index-numbered links closed by a primary arrow CTA, always visible with no hamburger.
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.