Two Plans Aside

Two ways to pay

Simpleprices,keptsimple.

One session at a time, or a season up front with a little off. Both can be paused, and neither renews without asking.

Reduced fees are available for students and anyone between jobs. Ask, and we will not ask why.

Session by session

$65per session

Pay as you go, book as you like. Good for finding out whether this is the right room.

  • 60-minute sessions
  • In the room or online
  • A written note after each session
  • Cancel free with a day's notice

A season

$690for twelve sessions

Twelve sessions, weekly or fortnightly, at roughly one session's worth off. Most people choose this after the first month.

  • Everything in session by session
  • A shared plan we revisit monthly
  • Voice notes between sessions
  • A closing session, on us
About this block

Two Plans AsidePRO

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.

Pricing77: Two Plans Aside

Two plans beside a sticky column: the heading, intro and a reduced-fee note hold their place while the cards sit alongside, one on a soft panel and the featured one on the ink surface.

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

Base UI flavor

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

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

Quick start

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

tsx
import { Pricing77, pricing77Demo } from "@/components/beste/block/pricing77";

export default function Page() {
  return <Pricing77 {...pricing77Demo} />;
}

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

tsx
import { Pricing77 } from "@/components/beste/block/pricing77";

export default function Page() {
  return (
    <Pricing77
      eyebrow="Two ways to pay"
      heading="Simple prices, kept simple."
      description="One session at a time, or a season up front with a little off."
      plans={[
        {
          name: "Session by session",
          price: "$65",
          cadence: "per session",
          description: "Pay as you go, book as you like.",
          features: ["60-minute sessions", "In the room or online"],
          button: { label: "Book one session", href: "/book", tone: "outline" },
        },
        {
          name: "A season",
          price: "$690",
          cadence: "for twelve sessions",
          description: "Twelve sessions at roughly one session's worth off.",
          features: ["A shared plan, revisited monthly", "A closing session, on us"],
          button: { label: "Begin a season", href: "/season", tone: "light" },
          featured: true,
        },
      ]}
      note="Reduced fees are available for students and anyone between jobs." 
    />
  );
}

Props

PropTypeDefaultDescription
eyebrowstringSmall-caps line above the heading
headingstringSection heading, rendered as an h2 through Text1
descriptionstringIntro in the sticky column
plansPlan[][]Plan cards, two across inside the wide column
notestringReduced-fee note under a rule in the sticky column
classNamestringExtra classes for the outer <section>
ts
type Plan = {
  name: string;
  price: string;
  cadence: string;
  description: string;
  features: string[];
  button: ActionButton;
  featured?: boolean;
};

type ActionButton = {
  label: string;
  href: string;
  tone?: "primary" | "light" | "dark" | "outline";
};

Behavior notes

  • featured is an explicit flag here rather than being inferred from an image, so a plan can be highlighted without a photograph; the featured card is a fixed dark surface whose muted text is written against background tokens.
  • note sits in the sticky column under its own border-t, so the reduced-fee line travels with the reader instead of being buried under the cards where it is easiest to miss.
  • Each card's button carries mt-auto, so the two actions line up along the bottom however uneven the feature lists are.
  • Prices are free strings, not numbers, so "$690", "690 EUR" or "From $65" all render as given.
  • The left column is md:sticky md:top-28 and returns to normal flow below md, where a sticky column would cover the cards.
  • The card grid is md:grid-cols-2 inside an eight-column span, so two plans is the intended count; a third wraps to a new row.
  • Cards enter with a 0.15s stagger, so the featured plan arrives after the one beside it.

More Pricing blocks

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

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

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

pricing58

Pricing with Slogan Panel

Two-panel pricing card with scrollable features list and dark slogan panel with background image overlay.