Compare plans
The full list. If it is not here, it is not in the product yet.
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.
The full comparison in ink: plan columns with prices that blur to their new value, then grouped feature rows of ticks, dashes and short values that scroll sideways on a narrow screen.
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/pricing83?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/pricing83?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/pricing83.tsx plus the button22 sliding-marker pill and the text1 word stagger it uses.
The installed file exports pricing83Demo alongside the block: the exact props behind the preview above. Spread it to get a working pricing section in one line.
import { Pricing83, pricing83Demo } from "@/components/beste/block/pricing83";
export default function Page() {
return <Pricing83 {...pricing83Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Pricing83 } from "@/components/beste/block/pricing83";
export default function Page() {
return (
<Pricing83
eyebrow="Compare plans"
heading="Everything, side by side."
description="The full list."
labels={{
monthly: "Monthly",
yearly: "Yearly",
saving: "Two months free",
perMonth: "/ month",
included: "Included",
notIncluded: "Not included",
}}
yearlyDefault
plans={[
{ name: "Studio", monthly: "$29", yearly: "$24", button: { label: "Choose Studio", href: "/signup" }, featured: true },
]}
groups={[
{
title: "Library",
rows: [
{ label: "Sections and components", values: [true] },
{ label: "Projects", values: ["5"] },
],
},
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
eyebrow | string | – | Small-caps line above the heading |
heading | string | – | Section heading, through Text1 |
description | string | – | Paragraph under the heading |
labels | Labels | { monthly: "Monthly", included: "Included", ... } | Wording of the switch, the unit and the cell icons |
yearlyDefault | boolean | false | Opens on the yearly cycle |
plans | Plan[] | [] | Table columns, in order |
groups | Group[] | [] | Feature groups, each with its own rows |
className | string | – | Extra classes for the outer <section> |
type Plan = {
name: string;
monthly: string;
yearly: string;
button: { label: string; href: string };
featured?: boolean;
};
type Row = {
label: string;
values: (boolean | string)[];
};
type Group = {
title: string;
rows: Row[];
};
type Labels = {
monthly: string;
yearly: string;
saving?: string;
perMonth: string;
included: string;
notIncluded: string;
};radiogroup of two buttons with an ink marker that slides between them through a shared layoutId, so the movement comes from the layout engine rather than a hand-written transform.inline-grid where both values share one cell, which lets the number keep its natural width so the unit label always sits right beside it.lg:max-w-lg and the header only becomes a row at the large breakpoint, which leaves enough slack that the growing saving note never steals width from the heading and wraps it onto a second line.true draws a tick, false draws a dash, and a string is printed as it is, which is how one row can say Unlimited while the next says yes or no.values array is read by column index, so a row with fewer entries than there are plans falls back to a dash rather than shifting the remaining cells left, and every icon carries an aria-label from the labels prop so a screen reader hears Included instead of nothing at all.background/85 rather than the accent, because an accent-coloured icon disappears against the ink surface.min-w-[40rem] inside an overflow-x-auto wrapper, so it scrolls sideways on a phone rather than compressing the columns to nothing.tbody with a rowgroup heading, which keeps the group titles tied to their rows in the accessibility tree, and the whole section is painted ink in both themes so every token here is a fixed background value.pricing76
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.
pricing8
Multi-plan feature comparison table with grouped categories and check/text values. Perfect for products with complex feature sets across multiple tiers.
pricing77
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.
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.
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.