Single Plan With Full Inclusion ListPRO

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.

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.

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

Base UI flavor

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

This installs the block to components/beste/block/pricing72.tsx, the money23 savings piece it floats on the tile (installed to components/beste/piece/money23.tsx), and the badge23 and button21 components it uses for the eyebrow and the actions.

Quick start

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

tsx
import { Pricing72, pricing72Demo } from "@/components/beste/block/pricing72";

export default function PricingPage() {
  return <Pricing72 {...pricing72Demo} />;
}

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

tsx
import { Money23 } from "@/components/beste/piece/money23";
import { Pricing72 } from "@/components/beste/block/pricing72";

export default function PricingPage() {
  return (
    <Pricing72
      badge={{ label: "One plan" }}
      heading="There is no tier where your audit log costs extra"
      description="We tried three tiers for a year and spent most of it explaining which one you needed."
      price="$29"
      period="per seat / month"
      priceNote="Billed monthly in arrears. Free while you are running a single clinic."
      button={{ label: "Start free", href: "/signup" }}
      secondaryButton={{ label: "Book a demo", href: "/demo" }}
      groups={[
        {
          label: "Running the day",
          items: ["Multi-site rota and rooms", "Waiting list with automatic backfill"],
        },
        {
          label: "Governance",
          items: ["Immutable audit log", "Full export whenever you ask"],
        },
      ]}
      media={
        <Money23
          label="Estimated saving"
          amount="$1,840"
          period="per month"
          delta="38% lower"
          rows={[{ label: "Four tools today", amount: "$4,820", muted: true }]}
        />
      }
      image={{ src: "/backdrops/blue.jpg", alt: "Soft blue gradient backdrop" }}
      footnote="Seats move up and down mid-month and we prorate both directions."
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Eyebrow at the top of the panel, rendered through Badge23
headingstringPanel heading
descriptionstringSupporting paragraph, capped at max-w-xl
pricestringThe figure, set at display scale
periodstringUnit clause beside the figure
priceNotestringBilling caveat under the figure
button{ label: string; href: string }Primary action
secondaryButton{ label: string; href: string }Outline action beside it
groupsFeatureGroup[][]Labelled inclusion lists across the panel foot
mediaReactNodeLive asset on the tile, money23 in the demo
image{ src: string; alt: string }Backdrop behind the media tile
footnotestringFine print under the panel
classNamestringExtra classes for the outer section
ts
type ActionLink = {
  label: string;
  href: string;
};

type TileImage = {
  src: string;
  alt: string;
};

type FeatureGroup = {
  label: string;
  items: string[];
};

Behavior notes

More Pricing blocks

View all Pricing
PRO

pricing64

Spotlight Plan & Add-ons

A single spotlight plan beside a list of modular add-ons.

PRO

pricing16

Minimal Single Plan

Clean single-plan pricing with inline feature badges in a compact layout. Perfect for focused products with one clear offering.

PRO

pricing9

Single Plan with Add-ons

Single pricing plan with selectable optional add-ons that toggle on click. Perfect for simple products with modular upsells.

PRO

pricing58

Pricing with Slogan Panel

Two-panel pricing card with scrollable features list and dark slogan panel with background image overlay.

PRO

pricing66

Single Plan Retainer

One bordered card pairing a big monochrome price and CTA with a two-column feature checklist.

PRO

pricing17

Pricing with FAQ

Single plan pricing card paired with an expandable FAQ accordion section. Perfect for reducing purchase friction with inline answers.