Two ways to pay
One session at a time, or a season up front with a little off. Both can be paused, and neither renews without asking.
Reduced fees are available for students and anyone between jobs. Ask, and we will not ask why.
Session by session
$65per session
Pay as you go, book as you like. Good for finding out whether this is the right room.
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.
Two plans beside a sticky column: the heading, intro and a reduced-fee note hold their place while the cards sit alongside, one on a soft panel and the featured one on the ink surface.
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/pricing77?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/pricing77?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/pricing77.tsx plus the button22 sliding-marker pill and the text1 word stagger it uses.
The installed file exports pricing77Demo alongside the block: the exact props behind the preview above. Spread it to get a working pricing section in one line.
import { Pricing77, pricing77Demo } from "@/components/beste/block/pricing77";
export default function Page() {
return <Pricing77 {...pricing77Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Pricing77 } from "@/components/beste/block/pricing77";
export default function Page() {
return (
<Pricing77
eyebrow="Two ways to pay"
heading="Simple prices, kept simple."
description="One session at a time, or a season up front with a little off."
plans={[
{
name: "Session by session",
price: "$65",
cadence: "per session",
description: "Pay as you go, book as you like.",
features: ["60-minute sessions", "In the room or online"],
button: { label: "Book one session", href: "/book", tone: "outline" },
},
{
name: "A season",
price: "$690",
cadence: "for twelve sessions",
description: "Twelve sessions at roughly one session's worth off.",
features: ["A shared plan, revisited monthly", "A closing session, on us"],
button: { label: "Begin a season", href: "/season", tone: "light" },
featured: true,
},
]}
note="Reduced fees are available for students and anyone between jobs."
/>
);
}| 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 in the sticky column |
plans | Plan[] | [] | Plan cards, two across inside the wide column |
note | string | – | Reduced-fee note under a rule in the sticky column |
className | string | – | Extra classes for the outer <section> |
type Plan = {
name: string;
price: string;
cadence: string;
description: string;
features: string[];
button: ActionButton;
featured?: boolean;
};
type ActionButton = {
label: string;
href: string;
tone?: "primary" | "light" | "dark" | "outline";
};featured is an explicit flag here rather than being inferred from an image, so a plan can be highlighted without a photograph; the featured card is a fixed dark surface whose muted text is written against background tokens.note sits in the sticky column under its own border-t, so the reduced-fee line travels with the reader instead of being buried under the cards where it is easiest to miss.mt-auto, so the two actions line up along the bottom however uneven the feature lists are."$690", "690 EUR" or "From $65" all render as given.md:sticky md:top-28 and returns to normal flow below md, where a sticky column would cover the cards.md:grid-cols-2 inside an eight-column span, so two plans is the intended count; a third wraps to a new row.0.15s stagger, so the featured plan arrives after the one beside it.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.
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.
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.
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.
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.