Dark Announcement Navbar

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

PRO

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.

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/navbar43?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

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

Quick start

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.

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

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

Props

PropTypeDefaultDescription
announcementAnnouncementOptional bar above the nav row
brandstringWordmark text
taglinestringText after a vertical divider next to the brand, hidden below md
linksNavLink[][]Uppercase desktop links, repeated in the mobile menu with a trailing arrow
ctaCtaLinkSeal button rendered via Button1 with tone="primary"
classNamestringExtra classes for the outer <header>
ts
type Announcement = {
  message: string;
  linkLabel?: string;
  href?: string;
};

type NavLink = { label: string; href: string };

type CtaLink = { label: string; href: string };

Behavior notes

More Navigation blocks

View all Navigation
PRO

navbar62

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

navbar53

Dark Mega Menu Navbar

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.

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

navbar41

Editorial Studio Navbar

Two-tier studio navbar with an availability utility strip, square-mark wordmark, index-numbered links and a seal CTA.

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.

PRO

navbar44

Centered Logo Navbar

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.