Dark studio navbar with a primary announcement bar, wordmark with tagline divider, uppercase links and a primary seal CTA.
Permanently dark studio navbar (bg-foreground/text-background) topped by an optional primary-colored announcement bar. The main row pairs a wordmark with a tagline behind a vertical divider, uppercase links and a primary-toned seal CTA; below lg it collapses into a hamburger-triggered mobile 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/navbar43?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/navbar43?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/navbar43.tsx and the button1 component it uses for its call-to-action.
The installed file exports navbar43Demo alongside the block: the exact props behind the preview above. Spread it to get a working navbar in one line.
import { Navbar43, navbar43Demo } from "@/components/beste/block/navbar43";
export default function Layout() {
return <Navbar43 {...navbar43Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Navbar43 } from "@/components/beste/block/navbar43";
export default function Layout() {
return (
<Navbar43
announcement={{
message: "Polaris Index '26 is live",
linkLabel: "Read it",
href: "/journal/index-26",
}}
brand="Polaris"
tagline="Brand & Product Studio"
links={[
{ label: "Work", href: "/work" },
{ label: "Studio", href: "/studio" },
]}
cta={{ label: "Start a Project", href: "/contact" }}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
announcement | Announcement | – | Optional bar above the nav row |
brand | string | – | Wordmark text |
tagline | string | – | Text after a vertical divider next to the brand, hidden below md |
links | NavLink[] | [] | Uppercase desktop links, repeated in the mobile menu with a trailing arrow |
cta | CtaLink | – | Seal button rendered via Button1 with tone="primary" |
className | string | – | Extra classes for the outer <header> |
type Announcement = {
message: string;
linkLabel?: string;
href?: string;
};
type NavLink = { label: string; href: string };
type CtaLink = { label: string; href: string };bg-foreground/text-background), independent of the site's light/dark theme.bg-primary) only renders when announcement is passed; its link portion requires both linkLabel and href to be set.md.tone="primary" so it reads correctly against the dark header.{open && ...}); the tagline and CTA both repeat in its footer.navbar62
Navbar with a dark scrolling announcement bar on top — looping links that pause on hover and fade at the edges — over a clean wordmark row with a pill CTA.
navbar53
Dark studio navbar whose Services item opens a mega panel with three eyebrow-titled link columns and a bordered booking card with a seal 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.
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.