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

Symmetric three-column navbar: nav links sit on the left, the square-mark wordmark is centered via a grid-cols-[1fr_auto_1fr] layout, and a seal CTA sits on the right. Below lg the links are replaced by a hamburger toggle and the CTA collapses to an icon-only circular arrow button, and the mobile menu opens as a bordered tile grid.

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

Base UI flavor

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

This installs the block to components/beste/block/navbar44.tsx and the button1 component it uses for its call-to-action.

Quick start

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

tsx
import { Navbar44, navbar44Demo } from "@/components/beste/block/navbar44";

export default function Layout() {
  return <Navbar44 {...navbar44Demo} />;
}

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

tsx
import { Navbar44 } from "@/components/beste/block/navbar44";

export default function Layout() {
  return (
    <Navbar44
      brand="Polaris"
      links={[
        { label: "Work", href: "/work" },
        { label: "Studio", href: "/studio" },
        { label: "Journal", href: "/journal" },
      ]}
      cta={{ label: "Start a Project", href: "/contact" }}
    />
  );
}

Props

PropTypeDefaultDescription
brandstringCentered wordmark
linksNavLink[][]Left-aligned desktop links, hidden below lg
ctaCtaLinkFull Button1 on desktop (lg); collapses to an icon-only circular arrow link below it
classNamestringExtra classes for the outer <header>

NavLink / CtaLink: { label: string; href: string }.

Behavior notes

More Navigation blocks

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

navbar51

Tab Bar Navbar

Two-row navbar with brand, availability status and seal CTA on top, and an underlined active-tab link row that scrolls horizontally on mobile.

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

navbar41

Editorial Studio Navbar

Two-tier studio navbar with an availability utility strip, square-mark wordmark, index-numbered links and a seal CTA.

PRO

navbar48

Masthead Navbar

Print-inspired masthead navbar with a giant centered wordmark flanked by studio meta and contact, over a ruled row of spread-out links with an inline seal CTA.

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.