A per-seat pricing calculator with a full-height photo panel on the left, a monthly and yearly toggle, a seat slider driving an oversized live count, an included-features list, and a soft summary column with a cost breakdown and total.
Per-seat pricing calculator in one hairline panel: a full-height photo on the left, a monthly and yearly toggle over a seat slider driving an oversized live count in the middle, and a soft summary column on the right where the cost breakdown and total recompute as you drag.
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/pricing68?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/pricing68?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/pricing68.tsx, the slider and tabs shadcn/ui primitives it is built on, and the badge23 and button21 components it uses for the eyebrow and the CTA.
The installed file exports pricing68Demo alongside the block: the exact props behind the preview above. Spread it to get a working calculator in one line.
import { Pricing68, pricing68Demo } from "@/components/beste/block/pricing68";
export default function PricingPage() {
return <Pricing68 {...pricing68Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Pricing68 } from "@/components/beste/block/pricing68";
export default function PricingPage() {
return (
<Pricing68
badge={{ label: "Pricing" }}
heading="Priced per seat"
currency="$"
seats={{ min: 3, max: 60, step: 1, initial: 12, label: "Team size", unit: "seats" }}
plan={{ name: "Practice", basePrice: 90, pricePerSeat: 14, includedSeats: 5 }}
billing={{
monthlyLabel: "Monthly",
yearlyLabel: "Yearly",
yearlyDiscount: 0.2,
monthlyNote: "billed monthly, cancel any time",
yearlyNote: "billed yearly",
}}
labels={{
baseLabel: "Platform fee",
seatsLabel: "Additional seats",
discountLabel: "Yearly discount",
totalLabel: "Total",
perMonthLabel: "per month",
includedLabel: "Included on every plan",
}}
features={["Unlimited members", "Shared calendars", "Audit trail on every record"]}
button={{ label: "Start with this plan", href: "/signup" }}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | { label: string } | – | Monospace eyebrow above the hairline rule, rendered via Badge23 |
heading | string | – | Section heading in the left column |
description | string | – | Supporting paragraph, right-aligned from md up |
media | Media | – | Photo panel on the left of the calculator, with an optional caption |
currency | string | – | Prefix in front of every formatted figure |
seats | Seats | – | Slider bounds, starting value, and the label plus unit beside the count |
plan | Plan | – | Plan name and the numbers the total is computed from |
billing | Billing | – | Toggle copy, the yearly discount rate, and the note under the price |
labels | Pricing68Labels | {} | Breakdown row copy, see below |
features | string[] | [] | Checked list under the slider |
button | { label: string; href: string } | – | Full-width CTA in the summary column |
footnote | string | – | Small print under the CTA |
className | string | – | Extra classes for the outer <section> |
type Media = {
image: { src: string; alt: string };
title?: string;
description?: string;
};
type Seats = {
min: number;
max: number;
step: number;
initial: number;
label: string;
unit: string;
};
type Plan = {
name: string;
basePrice: number;
pricePerSeat: number;
includedSeats: number;
};
type Billing = {
monthlyLabel: string;
yearlyLabel: string;
yearlyDiscount: number;
monthlyNote: string;
yearlyNote: string;
};
type Pricing68Labels = {
baseLabel?: string;
seatsLabel?: string;
discountLabel?: string;
totalLabel?: string;
perMonthLabel?: string;
includedLabel?: string;
};plan.includedSeats become billable, they are multiplied by plan.pricePerSeat and added to plan.basePrice, and on yearly the subtotal loses billing.yearlyDiscount of itself. Nothing is memoised and no price is stored in state.billing.yearlyDiscount is a rate, not a percentage: pass 0.2 for a fifth off. The same number renders the badge inside the yearly tab as -20%.Tabs with no TabsContent. It drives a single boolean, so the panel stays in place and only the numbers move.tabular-nums rather than a monospace face, which keeps the column aligned while the price changes without pulling the type out of the set's voice.Math.round is applied at format time only. A discount of a fraction of a currency unit still counts toward the total, it is simply displayed rounded.xl, because between lg and xl the calculator column is too narrow for two readable columns.pricing13
Per-seat pricing calculator with slider control and automatic volume discount display. Perfect for team collaboration tools with user-based pricing.
pricing11
Usage-based pricing calculator with interactive slider showing tiered breakpoints. Perfect for API services and consumption-based products.
pricing45
Enterprise pricing calculator with user count slider and volume discount tiers. Perfect for B2B products with usage-based enterprise pricing.
pricing26
Interactive ROI calculator with slider inputs showing potential savings and return projection. Perfect for enterprise tools demonstrating value.