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

A quiet top bar whose menu trigger opens a fullscreen overlay rather than a dropdown or panel: oversized numbered nav links fill the viewport with hover arrows, and a contact block plus social row and CTA sit beneath them.

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

Base UI flavor

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

This installs the block to components/beste/block/navbar64.tsx, the badge7 and button12 components it uses for the overlay's badges and CTA, and its dependencies.

Quick start

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

tsx
import { Navbar64, navbar64Demo } from "@/components/beste/block/navbar64";

export default function Layout() {
  return <Navbar64 {...navbar64Demo} />;
}

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

tsx
import { Navbar64 } from "@/components/beste/block/navbar64";

export default function Layout() {
  return (
    <Navbar64
      brand="Northwind"
      links={[
        { label: "Selected Work", href: "/work" },
        { label: "The Studio", href: "/studio" },
        { label: "Say Hello", href: "/contact" },
      ]}
      button={{ label: "Begin a brief", href: "/contact" }}
      email="studio@northwind.co"
      socials={[{ label: "Instagram", href: "https://instagram.com" }]}
      labels={{ menu: "Menu", menuBadge: "Index", contactBadge: "Reach us" }}
    />
  );
}

Props

PropTypeDefaultDescription
brandstringWordmark text shown in the top bar and again in the overlay header
linksNavLink[][]Numbered nav links shown inside the overlay
button{ label: string; href: string }CTA shown outline-toned in the top bar (from sm up) and again, default-toned, in the overlay footer
emailstringContact email link in the overlay footer; hidden entirely when not set
socialsNavLink[][]Social links in the overlay footer
labelsLabelsOverlay copy: the menu trigger text and both section badges; the menu trigger button itself only renders when labels is set
classNamestringExtra classes for the outer <header>
ts
type NavLink = { label: string; href: string };

type Labels = {
  menu: string;
  menuBadge: string;
  contactBadge: string;
};

Behavior notes

More Navigation blocks

View all Navigation
PRO

navbar45

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

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

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

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

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

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.