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.
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.
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.
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
npx shadcn add "https://ui.beste.co/r/navbar64?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
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.
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.
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:
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" }}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
brand | string | – | Wordmark text shown in the top bar and again in the overlay header |
links | NavLink[] | [] | 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 |
email | string | – | Contact email link in the overlay footer; hidden entirely when not set |
socials | NavLink[] | [] | Social links in the overlay footer |
labels | Labels | – | Overlay copy: the menu trigger text and both section badges; the menu trigger button itself only renders when labels is set |
className | string | – | Extra classes for the outer <header> |
type NavLink = { label: string; href: string };
type Labels = {
menu: string;
menuBadge: string;
contactBadge: string;
};open to true and renders a fixed inset-0 z-[60] overlay that covers the full viewport, this is the fullscreen behavior the block is built around; it has its own header row (brand + close button) and a scrollable content area.{open && ...}), not always mounted and hidden via CSS, so it is absent from the server HTML until opened.01, 02, ...) and rendered at very large sizes (text-4xl up to md:text-6xl) with a trailing arrow icon that shifts on hover.sm breakpoint (hidden sm:block), narrower than the lg breakpoint most other navbars in this set use for their desktop elements.md:flex-row md:items-end md:justify-between) on larger screens.navbar45
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.
navbar38
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.
navbar34
Navbar with slide-in sidebar drawer featuring grouped navigation sections and overlay backdrop. Perfect for content-rich sites wanting organized off-canvas navigation menus.
navbar58
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.
navbar54
Navbar where multiple items each open their own mega panel — three eyebrow-titled columns of described links with a view-all footer strip.
navbar56
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.