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.

PRO

A navbar built as a floating, fully rounded pill "island" resting on a muted band: the wordmark, quiet links, and a pill CTA all live inside the rounded bar rather than a full-width strip. Opening the mobile menu drops a separate rounded card below the pill instead of expanding the bar itself.

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

Base UI flavor

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

This installs the block to components/beste/block/navbar63.tsx, the button12 component it uses for its CTA, and its dependencies.

Quick start

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

tsx
import { Navbar63, navbar63Demo } from "@/components/beste/block/navbar63";

export default function Layout() {
  return <Navbar63 {...navbar63Demo} />;
}

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

tsx
import { Navbar63 } from "@/components/beste/block/navbar63";

export default function Layout() {
  return (
    <Navbar63
      brand="Northwind"
      links={[
        { label: "Work", href: "/work" },
        { label: "Studio", href: "/studio" },
        { label: "Journal", href: "/journal" },
      ]}
      button={{ label: "Get in touch", href: "/contact" }}
    />
  );
}

Props

PropTypeDefaultDescription
brandstringWordmark text; omitted entirely when not set
linksNavLink[][]Desktop and mobile nav links
button{ label: string; href: string }Pill CTA next to the links; hidden entirely when not set
classNamestringExtra classes for the outer <header>

NavLink: { label, href }.

Behavior notes

More Navigation blocks

View all Navigation
PRO

navbar37

Floating Pill Navbar

Centered floating navbar with rounded pill shape, backdrop blur effect, and compact layout. Perfect for modern landing pages and portfolios wanting a minimal floating navigation style.

PRO

navbar50

Floating Card Navbar

Detached floating navbar card with a square-mark wordmark, uppercase links and a compact seal CTA — the mobile menu unfolds inside the card.

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.

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

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

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.