Fullscreen Overlay Navbar

About this block

Fullscreen Overlay NavbarPRO

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.

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.

Upgrade Now

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

  • This block's meta sets fullscreen: true, so its preview renders at fullscreen size; opening the menu covers the entire viewport as a fixed, fullscreen overlay rather than a dropdown or side panel.
  • The overlay is always mounted in the DOM. Open/closed state is a translate-y transform plus opacity transition (-translate-y-full to translate-y-0), not a conditional render.
  • links (quick links) and menuLinks (the full list) are separate props by design: the trimmed set stays visible in the header bar, the fuller set fills the overlay.
  • Each overlay link, and the contact footer, animate in with a staggered transitionDelay computed from its index (the footer's delay also factors in menuLinks.length), applied only while open is true.
  • phone renders as a tel: link with whitespace stripped from the number.

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

navbar82

Full Screen Menu Navbar

A minimal bar with a wordmark, a sliding-marker pill and a two-line menu toggle that turns into a cross, opening a full-screen ink menu with film grain: numbered oversized serif links settle in one after another on the left, the photograph and description on the right blur to whichever link is hovered, and a ruled foot carries contact details, social links and the pill. The menu is always in the markup and shown with CSS.

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

navbar78

Classic Navbar

The classic layout in the language: serif wordmark on the left, uppercase letter-spaced links in the middle that underline from the left on hover, a quiet text link and a sliding-marker pill on the right, and a light full-height mobile menu whose links settle in one by one.

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.