Fees
A season saves roughly one session's worth.
Coaching
$70per session
Structured, forward-facing, with a written plan.
Therapy
$65per session
Long-term work with one steady practitioner.
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.
A pricing grid with a pill toggle above it: switching between paying per session and a season blurs each price out and the new one in, without anything else on the card moving.
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/pricing78?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/pricing78?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/pricing78.tsx plus the button22 sliding-marker pill and the text1 word stagger it uses.
The installed file exports pricing78Demo alongside the block: the exact props behind the preview above. Spread it to get a working pricing section in one line.
import { Pricing78, pricing78Demo } from "@/components/beste/block/pricing78";
export default function Page() {
return <Pricing78 {...pricing78Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Pricing78 } from "@/components/beste/block/pricing78";
export default function Page() {
return (
<Pricing78
eyebrow="Fees"
heading="Pay as you go, or commit to a season."
toggle={{
single: "Session by session",
season: "A season of twelve",
note: "A season saves roughly one session's worth.",
}}
plans={[
{
name: "Therapy",
single: "$65",
season: "$58",
description: "Long-term work with one steady practitioner.",
features: ["60 or 75-minute sessions", "A written note after each session"],
button: { label: "Choose therapy", href: "/therapy", tone: "light" },
featured: true,
},
]}
labels={{ perSession: "per session" }}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
eyebrow | string | – | Small-caps line above the heading |
heading | string | – | Section heading, rendered as an h2 through Text1 |
toggle | { single: string; season: string; note: string } | – | The two pill labels and the line under them |
plans | Plan[] | [] | Plan cards, three across from md |
labels | { perSession?: string } | {} | Suffix beside the price |
className | string | – | Extra classes for the outer <section> |
type Plan = {
name: string;
single: string;
season: string;
description: string;
features: string[];
button: ActionButton;
featured?: boolean;
};
type ActionButton = {
label: string;
href: string;
tone?: "primary" | "light" | "dark" | "outline";
};tabular-nums, so a two-digit and a three-digit figure occupy predictable width across the row.aria-pressed, not a switch: both options are named, which is the honest shape when the second one changes the price.season starts false), so the first number a visitor sees is the one they would pay without committing.featured marks one card as the ink surface; its muted text is written against background tokens rather than the adaptive ones.mt-auto, so the three actions stay on one line however uneven the feature lists are.pricing79
Three plan cards under a centred serif headline that settles in word by word and a monthly or yearly pill switch whose ink marker slides between the two; prices blur to their new value, a small saving note appears on yearly, the middle plan sits in ink, and each card ends in a full-width sliding-marker pill.
pricing75
Three pricing tiers under a centred serif heading that settles in word by word: two soft muted cards and a featured card set on a photograph with a dark scrim and film grain, each with a serif price, a cadence line, a check list and a sliding-marker pill.
pricing71
A three-tier pricing grid whose monthly and yearly toggle swaps both the light figure and the billing note on every card, with the recommended tier outlined in the accent.
pricing61
Three plans with a monthly/yearly billing toggle and feature lists.