Three engagement columns on hairlines, each stating its figure and cadence and then listing what the price covers directly against what it deliberately does not.
Three engagement columns on hairlines, each stating its figure and cadence and then listing what the price covers directly against what it deliberately does not.
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/pricing74?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/pricing74?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/pricing74.tsx, the badge6 component used for the eyebrow and the button1 seal button under the columns.
The installed file exports pricing74Demo alongside the block: the exact props behind the preview above. Spread it to get a working price list in one line.
import { Pricing74, pricing74Demo } from "@/components/beste/block/pricing74";
export default function PricingPage() {
return <Pricing74 {...pricing74Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Pricing74 } from "@/components/beste/block/pricing74";
export default function PricingPage() {
return (
<Pricing74
eyebrow="Ways to work together"
heading="Three shapes, and what each one is not"
includedLabel="What it covers"
excludedLabel="What it does not"
shapes={[
{
name: "Project",
price: "From £24,000",
cadence: "Fixed price, fixed scope",
summary: "A defined piece of work with a start and an end.",
included: ["A named team for the whole run", "Weekly written updates"],
excluded: ["Work added after the scope is signed"],
},
]}
button={{ label: "Start a conversation", href: "/contact" }}
note="Prices are the same whoever is asking."
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
eyebrow | string | – | Badge6 label above the hairline rule |
heading | string | – | Section heading under the rule |
includedLabel | string | – | Label over the covered list in every column |
excludedLabel | string | – | Label over the excluded list |
shapes | Shape[] | [] | One column per engagement shape |
button | ActionButton | – | Seal button under the columns |
note | string | – | Line beside the button |
className | string | – | Extra classes for the outer section |
type Shape = {
name: string;
price: string;
cadence: string;
summary: string;
included: string[];
excluded: string[];
};
type ActionButton = {
label: string;
href: string;
};price and cadence are free text, so a column can be a one-off figure, a monthly rate or an hourly one without a billing toggle.pricing69
Boxless pricing where each tier is a ruled column: the name, an oversized figure with its period, a fit line, an inclusion list under a second rule and a pill CTA, with subgrid keeping every internal rule aligned across the three columns.
pricing65
Three monochrome engagement tiers with editorial big-number pricing and an inverted featured plan.
pricing72
A one-plan pricing panel that sets an oversized light figure and two actions beside an image tile floating a live savings card, then lists everything included as three hairline groups below.