Two Plans Beside a Photo

Swimmers in clear green water beside a row of parasols

Two ways in

Startaloneorstarttogether.

Both plans hold the whole library. The difference is how many people and projects share it.

Save 20%

Solo

One person, one project, everything included.

One project · Every section and component · Agent access over MCP

$10/ month

Start with Solo

Studio

Up to five people and five projects, with shared themes.

Five projects · Five seats · Shared themes and history · Priority support

Prices in US dollars. Change or cancel at any time.

About this block

Two Plans Beside a PhotoPRO

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.

Pricing82: Two Plans Beside a Photo

A tall photograph on one side and two ruled plan rows on the other, under a monthly and yearly switch that leaves the layout exactly where it was.

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

Base UI flavor

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

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

Quick start

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

tsx
import { Pricing82, pricing82Demo } from "@/components/beste/block/pricing82";

export default function Page() {
  return <Pricing82 {...pricing82Demo} />;
}

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

tsx
import { Pricing82 } from "@/components/beste/block/pricing82";

export default function Page() {
  return (
    <Pricing82
      eyebrow="Two ways in"
      heading="Start alone or start together."
      description="Both plans hold the whole library."
      image={{ src: "/photos/cove.jpg", alt: "A rocky cove with wildflowers above turquoise water" }}
      labels={{ monthly: "Monthly", yearly: "Yearly", saving: "Save 20%", perMonth: "/ month" }}
      yearlyDefault
      plans={[
        {
          name: "Studio",
          description: "Up to five people and five projects.",
          monthly: "$29",
          yearly: "$24",
          features: ["Five projects", "Shared themes"],
          button: { label: "Start with Studio", href: "/signup" },
          featured: true,
        },
      ]}
      note="Prices in US dollars."
    />
  );
}

Props

PropTypeDefaultDescription
eyebrowstringSmall-caps line above the heading
headingstringSection heading, through Text1
descriptionstringParagraph under the heading
image{ src: string; alt: string }Photograph filling the left column
labelsLabels{ monthly: "Monthly", yearly: "Yearly", perMonth: "/ month" }Wording of the switch and the unit
yearlyDefaultbooleanfalseOpens on the yearly cycle
plansPlan[][]Plan rows, in order
notestringSmall print under the rows
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;
};

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.
  • The photograph is a 4:5 panel until the large breakpoint, where it stretches to match the height of the plan column beside it.
  • It drifts on scroll inside a frame that crops it at 120 percent, and fades up only once its file has loaded.
  • Features are joined into one line with a middle dot rather than listed, because two rows of bullets beside a full-height photograph reads as a wall.
  • Two plans is what the column is tuned for. A third still renders, but the rows start to crowd the picture's height.

More Pricing blocks

View all Pricing
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.

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

pricing79

Three Plans Toggle

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.

PRO

pricing75

Season Pricing

Three pricing tiers under a centred serif heading that settles in word by word: two soft muted cards and a featured card set on a photograph with a dark scrim and film grain, each with a serif price, a cadence line, a check list and a sliding-marker pill.

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

pricing76

Rhythm Comparison

A comparison table under a centred serif heading that settles in word by word: three plans with serif prices head ruled feature rows that blur in one after another, showing checks, dashes or short values, with a sliding-marker pill under each column.