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

Navbar rendered as a detached, bordered, rounded card floating over the page rather than a full-width bar, holding a square-mark wordmark, uppercase links, and a compact seal call-to-action. Below lg the mobile menu unfolds inside the same card instead of overlaying the page.

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

Base UI flavor

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

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

Quick start

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

tsx
import { Navbar50, navbar50Demo } from "@/components/beste/block/navbar50";

export default function Layout() {
  return <Navbar50 {...navbar50Demo} />;
}

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

tsx
import { Navbar50 } from "@/components/beste/block/navbar50";

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

Props

PropTypeDefaultDescription
brandstringWordmark shown at the left of the floating card
linksNavLink[][]Desktop nav links, hidden below lg; the desktop row is skipped entirely if empty
ctaCtaLinkbutton1 call-to-action, hidden below sm on desktop and duplicated full-width in the mobile menu
classNamestringExtra classes for the outer <header> (the floating card itself keeps its own max-w-5xl wrapper)
ts
type NavLink = { label: string; href: string };
type CtaLink = { label: string; href: string };

Behavior notes

More Navigation blocks

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

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

navbar61

Use-Case Mega Navbar

Navbar with a marked wordmark and a pill-highlighted trigger that drops a floating rounded mega panel — a parenthetical label over a 3x2 grid of icon use-case cards. Sign-in pill plus a primary 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.

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

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.