Single Plan With Full Inclusion List

One plan

There is no tier where your audit log costs extra

We tried three tiers for a year and spent most of it explaining which one you needed. So now there is one, and it has everything in it.

$29per seat / month

Billed monthly in arrears. Free while you are running a single clinic.

Soft blue gradient backdrop

Estimated saving

$1,840per month
38% lower
Four tools today$4,820
One workspace$2,980

Running the day

  • Multi-site rota and rooms
  • Waiting list with automatic backfill
  • Reminders by email and text
  • Member booking links, no app

Records and money

  • One member record across sites
  • Structured notes and documents
  • Invoices raised from appointments
  • Insurer and self-pay on one ledger

Governance

  • Role-based access with in-product requests
  • Immutable audit log
  • Chosen data region
  • Full export whenever you ask

Seats move up and down mid-month and we prorate both directions, including the one that costs us money.

About this block

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

  • The two actions are separate named props rather than an array, so their tones are fixed: button is always solid and secondaryButton always outlined. That is deliberate for a single-plan block, where the hierarchy never changes.
  • The inclusion groups sit inside the same bordered panel as the price, separated by a border-t. The whole offer is one object, which is the argument a single-plan page makes.
  • The group row uses gap-px over a bg-border container with bg-card cells, so the dividers between groups are the background showing through rather than borders on each cell.
  • Group lists close with last:border-b, so each reads as a small table rather than an open list.
  • The upper row is a 1.4fr to 1fr split, giving the price and copy the wider track while the savings tile stays only as wide as the card needs.
  • footnote sits outside the panel, which keeps prorating caveats reading as terms rather than as part of the offer.
  • The check icons are aria-hidden and the text carries the meaning, so a screen reader hears three plain lists.

More Pricing blocks

View all Pricing
PRO

pricing64

Spotlight Plan & Add-ons

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

PRO

pricing58

Pricing with Slogan Panel

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

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

pricing17

Pricing with FAQ

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

PRO

pricing66

Single Plan Retainer

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

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.