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.
Navbar topped with a dark, continuously scrolling announcement bar — a looping row of links that pauses on hover and fades out at both edges — sitting above a clean wordmark row with quiet links and a pill CTA.
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/navbar62?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/navbar62?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/navbar62.tsx, the button12 component it uses for its CTA, and its dependencies.
The installed file exports navbar62Demo alongside the block: the exact props behind the preview above. Spread it to get a working navbar in one line.
import { Navbar62, navbar62Demo } from "@/components/beste/block/navbar62";
export default function Layout() {
return <Navbar62 {...navbar62Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Navbar62 } from "@/components/beste/block/navbar62";
export default function Layout() {
return (
<Navbar62
brand="Northwind"
announcements={[
{ label: "We are booking new partners for autumn", href: "/contact" },
{ label: "The Northwind rebrand is live", href: "/journal/rebrand" },
]}
links={[
{ label: "Work", href: "/work" },
{ label: "Studio", href: "/studio" },
]}
button={{ label: "Start a project", href: "/contact" }}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
brand | string | – | Wordmark text; omitted entirely when not set |
announcements | Announcement[] | [] | Looping links in the marquee bar; the bar is hidden entirely when empty |
links | NavLink[] | [] | Desktop and mobile nav links in the row beneath the marquee |
button | { label: string; href: string } | – | Pill CTA next to the links; hidden entirely when not set |
className | string | – | Extra classes for the outer <header> |
type Announcement = { label: string; href: string };
type NavLink = { label: string; href: string };announcements array once ([...announcements, ...announcements]) and animates it with a CSS translateX(0) to translateX(-50%) keyframe running on a 36s linear infinite loop, which is what makes the loop appear seamless.animation-play-state: paused on group-hover.from-foreground to-transparent) blending the scrolling track into the dark bar.bg-foreground/text-background tones regardless of theme, it does not adapt like the rest of the header.useState boolean with no outside-click or Escape handling; there is no mega-menu behavior on this navbar.navbar43
Dark studio navbar with a primary announcement bar, wordmark with tagline divider, uppercase links and a primary 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.
navbar51
Two-row navbar with brand, availability status and seal CTA on top, and an underlined active-tab link row that scrolls horizontally on mobile.
navbar38
Two-tier navbar with slim top bar for announcements and contact info above main navigation. Perfect for e-commerce and service businesses displaying promotions and support details.
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.
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.