A sticky, frosted navbar with a serif wordmark, uppercase letter-spaced links that underline from the left on hover, a sliding-marker pill action, and a full-height ink mobile menu whose links settle in one after another.
A sticky frosted navbar: wordmark, small-caps links whose underline draws in from the left on hover, and a pill, with a full-screen ink menu on a phone whose links blur up one after another.
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.
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/navbar76?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/navbar76?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/navbar76.tsx plus the button22 sliding-marker pill it uses.
The installed file exports navbar76Demo alongside the block: the exact props behind the preview above. Spread it to get a working navbar in one line.
import { Navbar76, navbar76Demo } from "@/components/beste/block/navbar76";
export default function Page() {
return <Navbar76 {...navbar76Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Navbar76 } from "@/components/beste/block/navbar76";
export default function Page() {
return (
<Navbar76
brand="Altair"
items={[
{ label: "About", href: "/about" },
{ label: "Ways we work", href: "/work" },
{ label: "Journal", href: "/journal" },
]}
button={{ label: "Book a session", href: "/book" }}
note="Lisbon and online. Sessions in English and Portuguese."
labels={{ open: "Open menu", close: "Close menu" }}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
brand | string | – | Wordmark on the left |
items | NavItem[] | [] | Navigation links |
button | ActionButton | – | Pill action, repeated at the foot of the mobile menu |
note | string | – | Line under the links in the opened mobile menu |
labels | { open?: string; close?: string } | {} | Accessible names for the menu toggle |
className | string | – | Extra classes for the outer <header> |
type NavItem = {
label: string;
href: string;
};
type ActionButton = {
label: string;
href: string;
tone?: "primary" | "light" | "dark" | "outline";
};visible/invisible plus opacity) rather than mounted on open, so every navigation link is in the server-rendered HTML for crawlers and for a reader whose JavaScript has not arrived yet.transitionDelay values computed from the index, so the reveal is CSS rather than a second animation library running inside a header.0ms when the menu closes, so it collapses at once instead of unwinding item by item.aria-hidden because it carries no meaning.top-20, exactly the height of the bar, so the wordmark and the close button stay visible and in place while the menu is open.light tone rather than inheriting the one used in the bar.navbar77
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.
navbar79
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.
navbar78
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.
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.