Poster Split Navbar

About this block

Poster Split NavbarPRO

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.

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.

Upgrade Now

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

  • On desktop (lg and up) the right column stacks in order: nav links row, then the CTA button, then the badge, all right-aligned under the wordmark.
  • Below lg, only the wordmark and a mobile toggle button (Menu/X icon swap) show in the header row; the badge is not shown at all on mobile, only in the desktop stack.
  • The mobile menu is conditionally rendered while open is true, listing links as large stacked links followed by the full-width button; tapping a link closes the menu.
  • There is no dropdown or mega-panel behavior in this navbar; it is a purely static split-layout header with a simple show/hide mobile drawer.

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

navbar71

Pill Menu Navbar

A light editorial navbar with a lowercase wordmark, soft muted nav pills that reveal hover dropdowns, a solid accent call to action, and a collapsing mobile menu.

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.

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

navbar77

Centred Wordmark Navbar

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.

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.