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.
Upgrade to Pro
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.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.
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.
navbar79
A sticky navbar topped by a thin ink announcement bar with a small-caps link, then a frosted bar with the serif wordmark, uppercase links that underline from the left on hover, a sliding-marker pill, and a light full-height mobile menu whose links settle in one after another.
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.