Three Plans Toggle

Pricing

Payforthepaceyouworkat.

Three plans, one library. Switch between them whenever the work changes.

Two months free

Solo

For one person and one project.

$10/ month

billed yearly

  • One project
  • Every section and component
  • Agent access over MCP
  • Email support

Studio

For a small team shipping a few sites.

$24/ month

billed yearly

  • Five projects
  • Everything in Solo
  • Shared themes
  • Version history
  • Priority support

Agency

For agencies with many clients.

$65/ month

billed yearly

  • Twenty five projects
  • Everything in Studio
  • Client invitations
  • White label export
  • Same day support

Prices in US dollars. Cancel at any time; the plan runs until the end of the period.

About this block

Three Plans TogglePRO

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.

Pricing79: Three Plans Toggle

Three plan cards under a monthly and yearly switch: the marker slides between the two cycles, the prices blur to their new value, and the middle plan is painted ink.

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/pricing79?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

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

This installs the block to components/beste/block/pricing79.tsx plus the button22 sliding-marker pill and the text1 word stagger it uses.

Quick start

The installed file exports pricing79Demo alongside the block: the exact props behind the preview above. Spread it to get a working pricing section in one line.

tsx
import { Pricing79, pricing79Demo } from "@/components/beste/block/pricing79";

export default function Page() {
  return <Pricing79 {...pricing79Demo} />;
}

Then replace the demo with your own props. Written out, a trimmed setup looks like this:

tsx
import { Pricing79 } from "@/components/beste/block/pricing79";

export default function Page() {
  return (
    <Pricing79
      eyebrow="Pricing"
      heading="Pay for the pace you work at."
      description="Three plans, one library."
      labels={{
        monthly: "Monthly",
        yearly: "Yearly",
        saving: "Two months free",
        perMonth: "/ month",
        billedYearly: "billed yearly",
        billedMonthly: "billed monthly",
      }}
      yearlyDefault
      plans={[
        {
          name: "Studio",
          description: "For a small team shipping a few sites.",
          monthly: "$29",
          yearly: "$24",
          features: ["Five projects", "Shared themes"],
          button: { label: "Start with Studio", href: "/signup" },
          featured: true,
        },
      ]}
      note="Prices in US dollars. Cancel at any time."
    />
  );
}

Props

PropTypeDefaultDescription
eyebrowstringSmall-caps line above the heading
headingstringSection heading, through Text1
descriptionstringParagraph under the heading
labelsLabels{ monthly: "Monthly", yearly: "Yearly", perMonth: "/ month", ... }Wording of the switch, the unit and the billing line
yearlyDefaultbooleanfalseOpens on the yearly cycle
plansPlan[][]Plan cards, in order
notestringSmall print centred under the cards
classNamestringExtra classes for the outer <section>
ts
type Plan = {
  name: string;
  description: string;
  monthly: string;
  yearly: string;
  features: string[];
  button: { label: string; href: string };
  featured?: boolean;
};

type Labels = {
  monthly: string;
  yearly: string;
  saving?: string;
  perMonth: string;
  billedYearly: string;
  billedMonthly: string;
};

Behavior notes

  • The switch is a 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.
  • Prices swap inside an 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.
  • The saving note collapses its width and margin together rather than unmounting, so the switch drifts back to its resting position instead of jumping when you leave the yearly cycle.
  • Prices are strings rather than numbers, so a plan can read $24, Free or Talk to us without the block needing to know about currency.
  • The billing line under the price sits in an aria-live region, which is how a screen reader learns the cycle changed without being told about every card.
  • Tick icons on the featured card use text-current rather than the accent, because an accent-coloured icon disappears against the ink surface.
  • The featured plan takes the ink surface and a light pill, while the others take the muted surface and a dark pill, so the emphasis holds in both themes.

More Pricing blocks

View all Pricing
PRO

pricing78

Toggle Pricing

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.

PRO

pricing71

Three Tiers With Billing Toggle

A three-tier pricing grid whose monthly and yearly toggle swaps both the light figure and the billing note on every card, with the recommended tier outlined in the accent.

PRO

pricing80

Ruled Plan Rows

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.

PRO

pricing82

Two Plans Beside a Photo

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.

PRO

pricing61

Billing Toggle Pricing

Three plans with a monthly/yearly billing toggle and feature lists.

PRO

pricing77

Two Plans Aside

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.