Minimal navbar with an availability status whose menu opens a dark right-side drawer — numbered links float in with a stagger over a backdrop, with a seal CTA and socials below.
Minimal navbar pairing a wordmark and an availability status dot with a two-line menu trigger that opens a dark, inverted right-side drawer over a backdrop. Inside the drawer, numbered links float in from the right with a staggered animation, followed by a call-to-action button, an email link, and social icons in the footer.
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/navbar49?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/navbar49?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/navbar49.tsx and the button1 component it uses for its call-to-action.
The installed file exports navbar49Demo alongside the block: the exact props behind the preview above. Spread it to get a working navbar in one line.
import { Navbar49, navbar49Demo } from "@/components/beste/block/navbar49";
export default function Layout() {
return <Navbar49 {...navbar49Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Navbar49 } from "@/components/beste/block/navbar49";
export default function Layout() {
return (
<Navbar49
brand="Polaris"
statusLabel="Booking new projects for Q3"
menuLabel="Menu"
closeLabel="Close"
links={[
{ label: "Work", href: "/work" },
{ label: "Studio", href: "/studio" },
{ label: "Contact", href: "/contact" },
]}
socials={[
{ icon: "twitter", href: "https://twitter.com" },
{ icon: "instagram", href: "https://instagram.com" },
]}
cta={{ label: "Start a Project", href: "/contact" }}
email="studio@polaris.co"
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
brand | string | – | Wordmark shown in the top bar and repeated in the drawer's close row |
statusLabel | string | – | Availability text with a dot indicator, hidden below md |
menuLabel | string | – | Label text next to the two-line menu trigger icon |
closeLabel | string | – | Label text next to the close (X) icon inside the drawer |
links | NavLink[] | [] | Numbered links listed inside the drawer |
socials | SocialLink[] | [] | Social icon links in the drawer footer |
cta | CtaLink | – | Full-width button1 in the drawer footer |
email | string | – | Rendered as a mailto: link in the drawer footer |
className | string | – | Extra classes for the outer <header> |
type NavLink = { label: string; href: string };
type SocialLink = {
icon: "twitter" | "instagram" | "linkedin" | "dribbble";
href: string;
};
type CtaLink = { label: string; href: string };open, which drives a fixed full-screen backdrop, a fixed max-w-md right-side drawer, and their internal content, all animated with translate-x/opacity transitions rather than conditional rendering, so the closed markup stays present in the DOM.open back to false; there is no Escape-key handler.bg-foreground/text-background) regardless of the site's theme.Menu/X; the second line of the hamburger shrinks on hover.meta.fullscreen: true flag marks its opened state as a fullscreen overlay for the preview tooling, matching how the drawer actually covers the viewport when open.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.
navbar51
Two-row navbar with brand, availability status and seal CTA on top, and an underlined active-tab link row that scrolls horizontally on mobile.
navbar65
Two-tier navbar — a top strip carries an availability badge with a live dot and utility links, over a main row with an oversized wordmark, nav and pill CTA.
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.
navbar43
Dark studio navbar with a primary announcement bar, wordmark with tagline divider, uppercase links and a primary seal CTA.
navbar42
Table-inspired navbar with full-height bordered link cells, an availability cell and a dark full-height seal CTA cell.