Ink Comparison Table

Compare plans

Everything,sidebyside.

The full list. If it is not here, it is not in the product yet.

Two months free

Solo

$10/ month

Studio

$24/ month

Agency

$65/ month

Library
Sections and components
Projects1525
Seats15Unlimited
Agent access over MCP
Working together
Shared themes
Version history7 days90 daysUnlimited
Client invitations
White label export
Support
Email support
Priority queue
Same day response
About this block

Ink Comparison TablePRO

A dark comparison table: a serif headline that settles in word by word with a monthly or yearly pill switch at the right end of the header, plan columns with serif prices that blur to their new value and sliding-marker pills, then grouped feature rows with checks, dashes and short values, scrolling sideways on narrow screens.

Pricing83: Ink Comparison Table

The full comparison in ink: plan columns with prices that blur to their new value, then grouped feature rows of ticks, dashes and short values that scroll sideways on a narrow screen.

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

Base UI flavor

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

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

Quick start

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

tsx
import { Pricing83, pricing83Demo } from "@/components/beste/block/pricing83";

export default function Page() {
  return <Pricing83 {...pricing83Demo} />;
}

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

tsx
import { Pricing83 } from "@/components/beste/block/pricing83";

export default function Page() {
  return (
    <Pricing83
      eyebrow="Compare plans"
      heading="Everything, side by side."
      description="The full list."
      labels={{
        monthly: "Monthly",
        yearly: "Yearly",
        saving: "Two months free",
        perMonth: "/ month",
        included: "Included",
        notIncluded: "Not included",
      }}
      yearlyDefault
      plans={[
        { name: "Studio", monthly: "$29", yearly: "$24", button: { label: "Choose Studio", href: "/signup" }, featured: true },
      ]}
      groups={[
        {
          title: "Library",
          rows: [
            { label: "Sections and components", values: [true] },
            { label: "Projects", values: ["5"] },
          ],
        },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
eyebrowstringSmall-caps line above the heading
headingstringSection heading, through Text1
descriptionstringParagraph under the heading
labelsLabels{ monthly: "Monthly", included: "Included", ... }Wording of the switch, the unit and the cell icons
yearlyDefaultbooleanfalseOpens on the yearly cycle
plansPlan[][]Table columns, in order
groupsGroup[][]Feature groups, each with its own rows
classNamestringExtra classes for the outer <section>
ts
type Plan = {
  name: string;
  monthly: string;
  yearly: string;
  button: { label: string; href: string };
  featured?: boolean;
};

type Row = {
  label: string;
  values: (boolean | string)[];
};

type Group = {
  title: string;
  rows: Row[];
};

type Labels = {
  monthly: string;
  yearly: string;
  saving?: string;
  perMonth: string;
  included: string;
  notIncluded: 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 heading column is capped at lg:max-w-lg and the header only becomes a row at the large breakpoint, which leaves enough slack that the growing saving note never steals width from the heading and wraps it onto a second line.
  • A cell takes either a boolean or a string: true draws a tick, false draws a dash, and a string is printed as it is, which is how one row can say Unlimited while the next says yes or no.
  • Each values array is read by column index, so a row with fewer entries than there are plans falls back to a dash rather than shifting the remaining cells left, and every icon carries an aria-label from the labels prop so a screen reader hears Included instead of nothing at all.
  • Tick icons are drawn in background/85 rather than the accent, because an accent-coloured icon disappears against the ink surface.
  • The table has a min-w-[40rem] inside an overflow-x-auto wrapper, so it scrolls sideways on a phone rather than compressing the columns to nothing.
  • Each group is its own tbody with a rowgroup heading, which keeps the group titles tied to their rows in the accessibility tree, and the whole section is painted ink in both themes so every token here is a fixed background value.

More Pricing blocks

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

PRO

pricing8

Feature Comparison Table

Multi-plan feature comparison table with grouped categories and check/text values. Perfect for products with complex feature sets across multiple tiers.

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

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

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

pricing15

Free vs Pro Table

Two-column comparison table showing Free vs Pro features with check marks and text values. Perfect for freemium apps highlighting upgrade benefits.