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

Minimal stacked navbar with no call-to-action and no hamburger: a large primary-colored square logo with the wordmark tucked into its bottom corner, centered above a quiet ruled row of uppercase links.

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

Base UI flavor

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

This installs the block to components/beste/block/navbar58.tsx and its dependencies.

Quick start

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

tsx
import { Navbar58, navbar58Demo } from "@/components/beste/block/navbar58";

export default function Layout() {
  return <Navbar58 {...navbar58Demo} />;
}

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

tsx
import { Navbar58 } from "@/components/beste/block/navbar58";

export default function Layout() {
  return (
    <Navbar58
      brand="Polaris"
      links={[
        { label: "Work", href: "/work" },
        { label: "Studio", href: "/studio" },
        { label: "Contact", href: "/contact" },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
brandstringWordmark text tucked into the corner of the primary logo square; the whole square is hidden entirely when omitted
linksNavLink[][]Centered uppercase links in the ruled row below the logo; the row is hidden entirely when the array is empty
classNamestringExtra classes for the outer <header>

NavLink: { label, href }.

Behavior notes

More Navigation blocks

View all Navigation
PRO

navbar44

Centered Logo Navbar

Symmetric navbar with links on the left, a square-mark wordmark centered and a seal CTA on the right, plus a tile-grid mobile menu.

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.

PRO

navbar67

Poster Split Navbar

Poster-scale navbar — an oversized wordmark anchors the left while a right column stacks the nav, a pill CTA and a parenthetical label. Collapses to a stacked mobile menu.

FREE

navbar30

Centered Logo Split Nav

Symmetrical navbar with centered logo flanked by navigation links on both sides and dropdown menus. Perfect for fashion brands and lifestyle sites wanting balanced visual hierarchy.

PRO

navbar52

Letterhead Navbar

Letterhead-style navbar with a stacked brand block beside stacked rows of location, email and links, closed off by a seal CTA on the right.

PRO

navbar63

Floating Pill Navbar

A floating rounded-full navbar island resting on a muted band — wordmark, quiet links and a pill CTA, with a rounded mobile menu card that drops below.