Fullscreen Overlay Navbar

Dark navbar with a hamburger menu cell that opens a fullscreen overlay — the panel and its centered links cascade down from the top, with a contact footer.

PRO

Dark navbar whose hamburger cell opens a fullscreen overlay menu that slides down from the top of the viewport: centered links cascade in with a per-item stagger, followed by a contact footer with address and phone. The main bar itself stays compact, showing a short quick-link set and CTA next to the brand.

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

Base UI flavor

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

This installs the block to components/beste/block/navbar45.tsx and the button1 component it uses for its call-to-action.

Quick start

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

tsx
import { Navbar45, navbar45Demo } from "@/components/beste/block/navbar45";

export default function Layout() {
  return <Navbar45 {...navbar45Demo} />;
}

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

tsx
import { Navbar45 } from "@/components/beste/block/navbar45";

export default function Layout() {
  return (
    <Navbar45
      brand="Polaris"
      menuLabel="Menu"
      closeLabel="Close"
      links={[{ label: "Work", href: "/work" }]}
      menuLinks={[
        { label: "Home", href: "/" },
        { label: "Work", href: "/work" },
        { label: "Studio", href: "/studio" },
        { label: "Contact", href: "/contact" },
      ]}
      cta={{ label: "Book a Call", href: "/contact" }}
      address="12 Mercer Street, Soho, New York"
      phone="+1 212 555 0134"
    />
  );
}

Props

PropTypeDefaultDescription
brandstringWordmark shown next to the menu trigger
menuLabelstringText label next to the hamburger icon in the main bar
closeLabelstringText label next to the close icon inside the overlay
linksNavLink[][]Short quick-link list in the main bar, visible only on lg
menuLinksNavLink[][]Full link list shown centered inside the fullscreen overlay
ctaCtaLinkSeal button rendered via Button1 with tone="primary", visible on md and up in the main bar
addressstringShown in the overlay's contact footer next to a map-pin icon
phonestringShown in the overlay's contact footer as a tel: link with spaces stripped
classNamestringExtra classes for the outer <header>

NavLink / CtaLink: { label: string; href: string }.

Behavior notes

More Navigation blocks

View all Navigation
PRO

navbar64

Fullscreen Overlay Navbar

A quiet top bar whose menu button opens a full-screen overlay — oversized numbered links with hover arrows, a contact block and social row beneath. Pure Auralis big type.

PRO

navbar42

Grid Cell Navbar

Table-inspired navbar with full-height bordered link cells, an availability cell and a dark full-height seal CTA cell.

PRO

navbar34

Sidebar Drawer Navbar

Navbar with slide-in sidebar drawer featuring grouped navigation sections and overlay backdrop. Perfect for content-rich sites wanting organized off-canvas navigation menus.

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

navbar58

Monogram Navbar

Minimal stacked navbar — a large primary logo square with the wordmark tucked into its corner, over a quiet ruled row of uppercase links. No buttons, no hamburger.

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.