Side by side
Whatever the rhythm, sessions are the same length, the same people, and the same price for as long as you stay.
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.
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.
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
npx shadcn add "https://ui.beste.co/r/pricing76?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
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.
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.
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:
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" }}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
eyebrow | string | – | Small-caps line above the heading |
heading | string | – | Section heading, rendered as an h2 through Text1 |
description | string | – | Intro under the heading |
plans | Plan[] | [] | Table columns, in order |
rows | FeatureRow[] | [] | Feature rows; each values entry lines up with a plan |
labels | { included?: string; notIncluded?: string } | {} | Screen-reader wording for the tick and the dash |
className | string | – | Extra classes for the outer <section> |
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";
};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.values array must line up with plans by position; a shorter array simply leaves the trailing cells empty rather than shifting the columns."60 min" and a plain tick live in one table without a second prop.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.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.0.06s stagger, tight enough that a seven-row table resolves as one object.pricing83
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.
pricing80
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.
pricing82
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.
pricing78
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.