Full Screen Menu Navbar

About this block

Full Screen Menu NavbarPRO

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.

A wordmark and a menu word, and behind them a full-screen ink menu under film grain: numbered serif entries on one side, a photograph and description swapping to match the hovered entry on the other, with contacts and socials across the foot.

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

Base UI flavor

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

This installs the block to components/beste/block/navbar82.tsx plus the button22 sliding-marker pill it uses.

Quick start

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

tsx
import { Navbar82, navbar82Demo } from "@/components/beste/block/navbar82";

export default function Page() {
  return <Navbar82 {...navbar82Demo} />;
}

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

tsx
import { Navbar82 } from "@/components/beste/block/navbar82";

export default function Page() {
  return (
    <Navbar82
      brand="Altair"
      entries={[
        {
          label: "Therapy",
          description: "Weekly, with one steady person.",
          href: "/therapy",
          image: { src: "/rooms/bench.jpg", alt: "A sunlit room with a low timber bench" },
        },
      ]}
      contacts={[{ label: "Email", value: "hello@beste.co" }]}
      socials={[{ label: "Instagram", href: "https://instagram.com" }]}
      button={{ label: "First call", href: "/call" }}
      labels={{ menu: "Menu", close: "Close" }}
    />
  );
}

Props

PropTypeDefaultDescription
brandstringWordmark on the left
entriesMenuEntry[][]Numbered entries in the full-screen menu
contactsContactLine[][]Contact pairs across the foot of the menu
socials{ label: string; href: string }[][]Social links beside the pill
buttonActionButtonPill action, hidden in the bar while the menu is open
labels{ menu?: string; close?: string }{}The toggle's two words
classNamestringExtra classes for the outer <header>
ts
type MenuEntry = {
  label: string;
  description: string;
  href: string;
  image: { src: string; alt: string };
};

type ContactLine = {
  label: string;
  value: string;
};

type ActionButton = {
  label: string;
  href: string;
  tone?: "primary" | "light" | "dark" | "outline";
};

Behavior notes

  • The bar itself goes transparent and flips to the pale text colour when the menu opens, so the wordmark and the toggle stay put and simply invert rather than being covered by the overlay.
  • The toggle is two hairlines that rotate into a cross, animated on translate and rotate only, so the same element serves as both the open and close control and never re-mounts.
  • document.body.style.overflow is locked while the menu is open and restored on unmount, so the page behind cannot scroll under it.
  • The menu is always in the markup and revealed with CSS, so every entry is in the server-rendered HTML rather than appearing only after it is opened.
  • Entries stagger through inline transitionDelay values from the index, and the foot row waits on 200 + entries.length * 70 so it always arrives after the last entry however many there are.
  • The preview swaps on onMouseEnter and onFocus together and is keyed inside AnimatePresence, so tabbing through the entries changes both the photograph and the description with a cross-fade.
  • The preview column is hidden md:block, so on a phone the menu is just the numbered list and the foot, and every entry closes the menu on click.

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

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

navbar79

Announcement Navbar

A sticky navbar topped by a thin ink announcement bar with a small-caps link, then a frosted bar with the serif wordmark, uppercase links that underline from the left on hover, a sliding-marker pill, and a light full-height mobile menu whose links settle in one after another.

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

navbar77

Centred Wordmark Navbar

A sticky, frosted navbar with the serif wordmark in the centre, uppercase letter-spaced links split to either side that underline from the left on hover, a small sliding-marker pill, and a full-height light mobile menu whose links settle in one after another.

PRO

navbar71

Pill Menu Navbar

A light editorial navbar with a lowercase wordmark, soft muted nav pills that reveal hover dropdowns, a solid accent call to action, and a collapsing mobile menu.