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

Dark studio navbar on a solid bg-foreground bar whose single "Services" item opens a mega panel with three eyebrow-titled link columns and a bordered booking card carrying its own call-to-action. Plain nav links sit alongside the mega trigger, and the panel opens on hover as well as click.

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

Base UI flavor

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

This installs the block to components/beste/block/navbar53.tsx and the button1 component it uses for the CTA and the mega panel's booking card.

Quick start

The installed file exports navbar53Demo alongside the block: the exact props behind the preview above. Spread it to get a working navbar in one line.

tsx
import { Navbar53, navbar53Demo } from "@/components/beste/block/navbar53";

export default function Layout() {
  return <Navbar53 {...navbar53Demo} />;
}

Then replace the demo with your own props. Written out, a trimmed setup looks like this:

tsx
import { Navbar53 } from "@/components/beste/block/navbar53";

export default function Layout() {
  return (
    <Navbar53
      brand="Polaris"
      megaMenu={{
        label: "Services",
        columns: [
          {
            title: "Brand",
            links: [{ label: "Strategy & Naming", href: "/services/strategy" }],
          },
          {
            title: "Build",
            links: [{ label: "Web Engineering", href: "/services/engineering" }],
          },
        ],
        card: {
          heading: "Not sure where to start?",
          description: "Tell us about your brief and we'll map the right team.",
          cta: { label: "Book a Call", href: "/contact" },
        },
      }}
      links={[
        { label: "Work", href: "/work" },
        { label: "Journal", href: "/journal" },
      ]}
      cta={{ label: "Start a Project", href: "/contact" }}
    />
  );
}

Props

PropTypeDefaultDescription
brandstringWordmark text next to the leading square accent; hidden entirely when omitted
megaMenuMegaMenuMega trigger and panel content; hidden entirely when omitted
linksNavLink[][]Plain nav links rendered after the mega trigger
ctaCtaLinkPrimary button, rendered via button1; hidden when omitted
classNamestringExtra classes for the outer <header>
ts
type NavLink = { label: string; href: string };

type MegaMenu = {
  label: string;
  columns: MegaColumn[];
  card?: MegaCard;
};

type MegaColumn = { title: string; links: NavLink[] };

type MegaCard = {
  heading: string;
  description: string;
  cta: { label: string; href: string };
};

Behavior notes

More Navigation blocks

View all Navigation
PRO

navbar60

Mega Studio Navbar

Full mega-menu navbar — bold links open three-column panels with parenthetical section labels, descriptions and a footer link. SSR-mounted panels, pill CTA and a stacked mobile menu.

PRO

navbar47

Mega Menu Navbar

Studio navbar whose Work item opens a full-width mega panel with category links and three featured project thumbnails.

PRO

navbar70

Dark Three-Column Mega Navbar

Inverted bg-foreground navbar with a three-column mega panel — an intro pitch, a numbered index list and a full-color featured image tile, divided by hairline rules. Outline pill CTAs throughout. Closes on outside click or Escape.

PRO

navbar54

Multi Mega Menu Navbar

Navbar where multiple items each open their own mega panel — three eyebrow-titled columns of described links with a view-all footer strip.

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

navbar55

Editorial Mega Menu Navbar

Navbar with an editorial split mega panel — eyebrow statement and seal CTA on the left, a numbered two-column project index in the middle and a tall studio image on the right.