Rhythm Comparison

Side by side

Threerhythms,onesetofrules.

Whatever the rhythm, sessions are the same length, the same people, and the same price for as long as you stay.

Monthly

$60

one session a month

Fortnightly

$110

two sessions a month

Weekly

$240

twelve weeks

Session length60 min60 min75 min
In the room or onlineIncludedIncludedIncluded
Written note after each sessionIncludedIncludedIncluded
Voice notes between sessionsNot includedIncludedIncluded
Priority reschedulingNot includedIncludedIncluded
A shared plan, revisited monthlyNot includedNot includedIncluded
Closing session, on usNot includedNot includedIncluded
Choose monthlyChoose fortnightlyChoose weekly
About this block

Rhythm ComparisonPRO

A comparison table under a centred serif heading that settles in word by word: three plans with serif prices head ruled feature rows that blur in one after another, showing checks, dashes or short values, with a sliding-marker pill under each column.

Pricing76: Rhythm Comparison

A real comparison table: three plans across the head with their prices, a ruled body of feature rows carrying ticks, dashes or short values, and each plan's action in the final row.

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

Base UI flavor

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

This installs the block to components/beste/block/pricing76.tsx plus the button22 sliding-marker pill and the text1 word stagger it uses.

Quick start

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

tsx
import { Pricing76, pricing76Demo } from "@/components/beste/block/pricing76";

export default function Page() {
  return <Pricing76 {...pricing76Demo} />;
}

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

tsx
import { Pricing76 } from "@/components/beste/block/pricing76";

export default function Page() {
  return (
    <Pricing76
      eyebrow="Side by side"
      heading="Three rhythms, one set of rules."
      description="Whatever the rhythm, sessions are the same length and the same people."
      plans={[
        { name: "Monthly", price: "$60", cadence: "one session a month", button: { label: "Choose monthly", href: "/monthly", tone: "outline" } },
        { name: "Weekly", price: "$240", cadence: "twelve weeks", button: { label: "Choose weekly", href: "/weekly", tone: "dark" } },
      ]}
      rows={[
        { label: "Session length", values: ["60 min", "75 min"] },
        { label: "Voice notes between sessions", values: [false, true] },
      ]}
      labels={{ included: "Included", notIncluded: "Not included" }}
    />
  );
}

Props

PropTypeDefaultDescription
eyebrowstringSmall-caps line above the heading
headingstringSection heading, rendered as an h2 through Text1
descriptionstringIntro under the heading
plansPlan[][]Table columns, in order
rowsFeatureRow[][]Feature rows; each values entry lines up with a plan
labels{ included?: string; notIncluded?: string }{}Screen-reader wording for the tick and the dash
classNamestringExtra classes for the outer <section>
ts
type Plan = {
  name: string;
  price: string;
  cadence: string;
  button: ActionButton;
};

type FeatureRow = {
  label: string;
  values: (boolean | string)[];
};

type ActionButton = {
  label: string;
  href: string;
  tone?: "primary" | "light" | "dark" | "outline";
};

Behavior notes

  • This is a real table with thead, tbody and th scope="row", so a screen reader can announce which plan a cell belongs to. A grid of divs cannot do that, and a pricing comparison is exactly the case where it matters.
  • Each values array must line up with plans by position; a shorter array simply leaves the trailing cells empty rather than shifting the columns.
  • A value may be a boolean or a string in the same row, so "60 min" and a plain tick live in one table without a second prop.
  • Ticks and dashes carry sr-only text from labels, so a cell is never announced as an unlabelled icon; the visual mark and the spoken word come from the same place.
  • A missing feature is a dash, not a cross, so the table states a difference without scoring a point against a plan.
  • The table has a min-w-[44rem] inside an overflow-x-auto wrapper, so on a phone it scrolls sideways as one object instead of collapsing into unreadable columns.
  • Rows enter with a 0.06s stagger, tight enough that a seven-row table resolves as one object.

More Pricing blocks

View all Pricing
PRO

pricing83

Ink Comparison Table

A dark comparison table: a serif headline that settles in word by word with a monthly or yearly pill switch at the right end of the header, plan columns with serif prices that blur to their new value and sliding-marker pills, then grouped feature rows with checks, dashes and short values, scrolling sideways on narrow screens.

PRO

pricing80

Ruled Plan Rows

Plans as ruled rows rather than cards: name and one line on the left, a serif price that blurs to its monthly or yearly value, and a sliding-marker pill at the row's end. The pill switch and its saving note sit at the right end of the header beside a serif headline that settles in word by word.

PRO

pricing82

Two Plans Beside a Photo

A tall photograph that blurs in and drifts on scroll on the left; on the right a serif headline that settles in word by word, an intro, a monthly or yearly pill switch, and two plans as ruled rows, each with a serif price that blurs to its new value, the included features in one line and a sliding-marker pill.

PRO

pricing78

Toggle Pricing

Three pricing cards under a centred serif heading that settles in word by word, with a pill toggle between paying per session and committing to a season: the serif prices blur out and in as it switches, and each card ends in a sliding-marker pill.

PRO

pricing77

Two Plans Aside

A two-plan pricing section: a sticky column with a serif heading that settles in word by word, an intro and a reduced-fee note, beside two cards, one soft muted and one ink, each with a serif price, a check list and a sliding-marker pill.

PRO

pricing8

Feature Comparison Table

Multi-plan feature comparison table with grouped categories and check/text values. Perfect for products with complex feature sets across multiple tiers.