Honest Comparison

The honest comparison

Whatasmallpracticecandothatalargeonecannot.

We are not the cheapest, the biggest or the fastest. Here is what you get instead.

Altair

  • The same practitioner every session
  • Sessions never cut short
  • A written note after each hour
  • Pause without losing your slot
  • Evening and walking sessions
  • Same-day booking

A large platform

  • The same practitioner every session
  • Sessions never cut short
  • A written note after each hour
  • Pause without losing your slot
  • Evening and walking sessions
  • Same-day booking
About this block

Honest ComparisonPRO

An us-and-them comparison under a centred serif heading that settles in word by word: an ink column and a muted column list the same points with ringed checks and dashes that arrive one by one, and a sliding-marker pill closes it.

Feature288: Honest Comparison

An honest two-column comparison: your side on the ink surface and theirs on a muted panel, each line ticked or dashed, with a pill centred underneath.

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

Base UI flavor

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

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

Quick start

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

tsx
import { Feature288, feature288Demo } from "@/components/beste/block/feature288";

export default function Page() {
  return <Feature288 {...feature288Demo} />;
}

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

tsx
import { Feature288 } from "@/components/beste/block/feature288";

export default function Page() {
  return (
    <Feature288
      eyebrow="The honest comparison"
      heading="What a small practice can do that a large one cannot."
      description="We are not the cheapest, the biggest or the fastest."
      button={{ label: "Decide for yourself, on a call", href: "/call", tone: "dark" }}
      us={{
        title: "Altair",
        points: [
          { label: "The same practitioner every session", included: true },
          { label: "Same-day booking", included: false },
        ],
      }}
      them={{
        title: "A large platform",
        points: [
          { label: "The same practitioner every session", included: false },
          { label: "Same-day booking", included: true },
        ],
      }}
    />
  );
}

Props

PropTypeDefaultDescription
eyebrowstringSmall-caps line above the heading
headingstringSection heading, rendered as an h2 through Text1
descriptionstringIntro under the heading
buttonActionButtonPill centred under the columns
usColumnYour column, drawn on the ink surface
themColumnThe comparison column, on a muted panel
classNamestringExtra classes for the outer <section>
ts
type Column = {
  title: string;
  points: { label: string; included: boolean }[];
};

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

Behavior notes

  • The two columns hold their own point lists rather than sharing one row set, so they do not have to be the same length or in the same order; keeping the labels aligned is deliberate editing rather than something the block enforces.
  • A missing point is a dash, not a cross. The mark is Minus and the label drops to a muted tone, which states the difference without scoring a point against anyone.
  • included: false is honest in both directions: the demo gives the featured column a false of its own, and the block draws it exactly the same way, so a fair comparison is the default shape rather than an unusual one.
  • The featured column is a fixed dark surface, so its dividers and muted text are written against background tokens rather than the adaptive ones the muted column uses.
  • Points enter with a 0.06s stagger, tight enough that a six-line column reads as one list rather than as six arrivals.
  • The section heading is centred while both lists are left aligned, which keeps a column of comparable lines scannable.
  • Either column may be omitted, in which case the remaining one takes half the grid rather than stretching.

More Feature blocks

View all Feature
PRO

feature278

Two Doors Tabs

A tabbed comparison under a centred serif heading that settles in word by word: pill tabs switch between approaches, each blurring in a drifting portrait photograph beside a serif title, a description, a ruled fact list and a sliding-marker pill.

PRO

feature281

Three Icon Columns

The classic three-column feature: a centred serif heading that settles in word by word and an intro, three columns with a round muted icon, a serif title and a description that arrive in turn, and a sliding-marker pill beneath.

PRO

feature295

Before and After Columns

A centred serif headline that settles in word by word, then two columns: a muted panel listing how an agent improvises today and an ink panel listing what it does once the library is installed. Between them, on a hairline, sits the pill that copies the install command on click.

PRO

feature283

Checklist Split

A benefits split: a portrait photograph drifting inside its frame on the left, and on the right a serif heading that settles in word by word, an intro, a two-column list of ringed check benefits that arrive one by one, and a sliding-marker pill.

PRO

feature155

Feature Comparison Table

Simple 3-column comparison table with feature names and check/cross icons. Essential for plan comparison, feature tier table, or pricing comparison.

PRO

feature55

Two-Plan Comparison Table

Side-by-side comparison table with check/cross icons and text values for two plan tiers. Perfect for free vs premium comparisons and feature tier breakdowns.