Announcement Marquee Navbar

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.

PRO

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.

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.

Installation

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

bash
npx shadcn add "https://ui.beste.co/r/navbar62?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

bash
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.

Quick start

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.

tsx
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:

tsx
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" }}
    />
  );
}

Props

PropTypeDefaultDescription
brandstringWordmark text; omitted entirely when not set
announcementsAnnouncement[][]Looping links in the marquee bar; the bar is hidden entirely when empty
linksNavLink[][]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
classNamestringExtra classes for the outer <header>
ts
type Announcement = { label: string; href: string };
type NavLink = { label: string; href: string };

Behavior notes

More Navigation blocks

View all Navigation
PRO

navbar43

Dark Announcement Navbar

Dark studio navbar with a primary announcement bar, wordmark with tagline divider, uppercase links and a primary seal CTA.

PRO

navbar59

Studio Bar Navbar

Editorial single-row navbar — bold wordmark, quiet bold links, and an outline pill CTA. Collapses to a clean full-height mobile menu.

PRO

navbar51

Tab Bar Navbar

Two-row navbar with brand, availability status and seal CTA on top, and an underlined active-tab link row that scrolls horizontally on mobile.

PRO

navbar38

Dual-Row Navbar

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.

PRO

navbar63

Floating Pill Navbar

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.

PRO

navbar56

Giant Wordmark Navbar

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.