Seat Slider Price CalculatorPRO

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.

Pricing68: Seat Slider Price Calculator

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.

Upgrade Now

Installation

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

bash
npx shadcn add "https://ui.beste.co/r/pricing68?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

bash
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.

Quick start

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.

tsx
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:

tsx
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" }}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Monospace eyebrow above the hairline rule, rendered via Badge23
headingstringSection heading in the left column
descriptionstringSupporting paragraph, right-aligned from md up
mediaMediaPhoto panel on the left of the calculator, with an optional caption
currencystringPrefix in front of every formatted figure
seatsSeatsSlider bounds, starting value, and the label plus unit beside the count
planPlanPlan name and the numbers the total is computed from
billingBillingToggle copy, the yearly discount rate, and the note under the price
labelsPricing68Labels{}Breakdown row copy, see below
featuresstring[][]Checked list under the slider
button{ label: string; href: string }Full-width CTA in the summary column
footnotestringSmall print under the CTA
classNamestringExtra classes for the outer <section>
ts
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;
};

Behavior notes

More Pricing blocks

View all Pricing
PRO

pricing13

Per-Seat Calculator

Per-seat pricing calculator with slider control and automatic volume discount display. Perfect for team collaboration tools with user-based pricing.

PRO

pricing11

Usage-Based Slider

Usage-based pricing calculator with interactive slider showing tiered breakpoints. Perfect for API services and consumption-based products.

PRO

pricing45

Enterprise Volume Calculator

Enterprise pricing calculator with user count slider and volume discount tiers. Perfect for B2B products with usage-based enterprise pricing.

PRO

pricing26

ROI Calculator

Interactive ROI calculator with slider inputs showing potential savings and return projection. Perfect for enterprise tools demonstrating value.

PRO

pricing57

Volume Discount Table

Per-seat pricing table showing volume discount tiers and price-per-user breakpoints. Perfect for team products with tiered pricing.

PRO

pricing59

Tiered Plan Tabs

Tabbed membership pricing: feature list, headline price with CTA, and a plan summary panel per tab.