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.
Plans as ruled rows rather than cards: the name and its line on the left, the price in the middle, the pill at the end, all held on a fixed grid so the figures stay aligned.
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/pricing80?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/pricing80?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/pricing80.tsx plus the button22 sliding-marker pill and the text1 word stagger it uses.
The installed file exports pricing80Demo alongside the block: the exact props behind the preview above. Spread it to get a working pricing section in one line.
import { Pricing80, pricing80Demo } from "@/components/beste/block/pricing80";
export default function Page() {
return <Pricing80 {...pricing80Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Pricing80 } from "@/components/beste/block/pricing80";
export default function Page() {
return (
<Pricing80
eyebrow="Plans"
heading="Three rows, no surprises."
description="Nothing is unlocked later."
labels={{ monthly: "Monthly", yearly: "Yearly", saving: "Save 20%", perMonth: "/ month" }}
plans={[
{
name: "Studio",
description: "A small team, a few sites.",
monthly: "$29",
yearly: "$24",
button: { label: "Choose Studio", href: "/signup" },
featured: true,
},
]}
note="All prices in US dollars, before tax."
/>
);
}| 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", yearly: "Yearly", perMonth: "/ month" } | Wording of the switch and the unit |
yearlyDefault | boolean | false | Opens on the yearly cycle |
plans | Plan[] | [] | Plan rows, in order |
note | string | – | Small print under the rows |
className | string | – | Extra classes for the outer <section> |
type Plan = {
name: string;
description: string;
monthly: string;
yearly: string;
button: { label: string; href: string };
featured?: boolean;
};
type Labels = {
monthly: string;
yearly: string;
saving?: string;
perMonth: 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.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.
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.
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.
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.