Per-Site Band SelectorPRO

A per-site pricing table whose hairline bands are selectable, driving a soft summary panel that recomputes the rate and the whole-group total, beside an image tile floating a live sites card.

Pricing73: Per-Site Band Selector

A per-site pricing table whose hairline bands are selectable, driving a soft summary panel that recomputes the rate and the whole-group total, beside an image tile floating a live sites card.

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

Base UI flavor

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

This installs the block to components/beste/block/pricing73.tsx, the location8 sites piece it floats on the tile (installed to components/beste/piece/location8.tsx), and the badge23 and button21 components it uses for the eyebrow and the action.

Quick start

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

tsx
import { Pricing73, pricing73Demo } from "@/components/beste/block/pricing73";

export default function GroupPricingPage() {
  return <Pricing73 {...pricing73Demo} />;
}

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

tsx
import { Location8 } from "@/components/beste/piece/location8";
import { Pricing73 } from "@/components/beste/block/pricing73";

export default function GroupPricingPage() {
  return (
    <Pricing73
      badge={{ label: "Per site" }}
      heading="The more clinics you run, the less each one costs"
      description="Groups pay per site rather than per seat."
      columns={["Sites", "Per site / month", "What it adds"]}
      tiers={[
        { range: "1 site", sites: 1, perSite: 340, note: "Everything in the product, one clinic" },
        { range: "2 to 4 sites", sites: 3, perSite: 290, note: "Shared waiting list and capacity" },
      ]}
      summaryLabel="At this band"
      currency="$"
      perSiteLabel="per site each month"
      totalLabel="for the whole group each month"
      media={
        <Location8
          title="Sites on this plan"
          region="United Kingdom"
          sites={[{ name: "Bramble Health", meta: "Bristol", value: "6 rooms" }]}
          total="13"
          totalLabel="rooms live across three sites"
        />
      }
      image={{ src: "/backdrops/green.jpg", alt: "Deep green gradient backdrop" }}
      button={{ label: "Talk about a group rollout", href: "/contact" }}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Eyebrow above the hairline rule, rendered through Badge23
headingstringSection heading in the left column of the header
descriptionstringSupporting paragraph, right-aligned from md up
columnsstring[][]Column headings, also reused as a mobile row label
tiersSiteTier[][]Selectable bands, the second one starts selected
summaryLabelstringSmall label above the computed figures
currencystring"$"Symbol prefixed to every figure
perSiteLabelstringCaption under the per-site figure
totalLabelstringCaption under the group total
mediaReactNodeLive asset on the tile, location8 in the demo
image{ src: string; alt: string }Backdrop behind the media tile
button{ label: string; href: string }Action inside the summary panel
classNamestringExtra classes for the outer section
ts
type ActionLink = {
  label: string;
  href: string;
};

type SiteTier = {
  range: string;
  sites: number;
  perSite: number;
  note: string;
};

Behavior notes

More Pricing blocks

View all Pricing
PRO

pricing30

Budget Slider Selector

Budget-based plan selector with slider control that highlights the best matching plan. Perfect for helping users find the right tier.

PRO

pricing72

Single Plan With Full Inclusion List

A one-plan pricing panel that sets an oversized light figure and two actions beside an image tile floating a live savings card, then lists everything included as three hairline groups below.

PRO

pricing67

Comparison Matrix Pricing

A monochrome plan comparison matrix with ruled feature rows, check/minus cells, and per-plan CTAs.

PRO

pricing57

Volume Discount Table

Per-seat pricing table showing volume discount tiers and price-per-user breakpoints. Perfect for team products with tiered pricing.

PRO

pricing40

Minimal Toggle Selector

Clean minimal plan selector with button-style toggles and compact layout. Perfect for simple products with few options.

PRO

pricing37

Toggle Group Add-ons

Base plan pricing with toggle group buttons for selecting add-ons. Perfect for products with a la carte feature selection.