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.

PRO

Poster-scale navbar built as a two-column split: a very large wordmark (up to text-7xl on large screens) anchors the left side, while a right-hand column stacks the nav links, a pill CTA and a parenthetical badge underneath each other. It collapses to a stacked mobile menu below the lg breakpoint.

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

Base UI flavor

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

This installs the block to components/beste/block/navbar67.tsx, the badge7 and button12 components it uses for the parenthetical badge and the CTA pill, and its dependencies.

Quick start

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

tsx
import { Navbar67, navbar67Demo } from "@/components/beste/block/navbar67";

export default function Layout() {
  return <Navbar67 {...navbar67Demo} />;
}

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

tsx
import { Navbar67 } from "@/components/beste/block/navbar67";

export default function Layout() {
  return (
    <Navbar67
      brand="Auralis"
      badge={{ label: "Navigate" }}
      links={[
        { label: "Work", href: "/work" },
        { label: "Studio", href: "/studio" },
        { label: "Journal", href: "/journal" },
      ]}
      button={{ label: "Make something", href: "/contact" }}
    />
  );
}

Props

PropTypeDefaultDescription
brandstringOversized wordmark text on the left, linked home
badge{ label: string }Small badge7 label placed under the button in the right-hand stack
linksNavLink[][]Nav links, shown as a row above the button on desktop
button{ label: string; href: string }Pill CTA rendered with button12
classNamestringExtra classes for the outer <header>

NavLink: { label, href }.

Behavior notes

More Navigation blocks

View all Navigation
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

navbar59

Studio Bar Navbar

Editorial single-row navbar — bold wordmark, quiet bold links, and an outline pill CTA. Collapses to a clean full-height mobile menu.

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.

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

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

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.