Checklist Split

A long sandy beach with a boat on the horizon

Included with every plan

Thesmallthingsthatmakethehourhold.

Whatever rhythm you choose, these come with it. They are not extras; they are how the work stays with you between sessions.

  • A written note after every session
  • Email or voice notes between sessions
  • The same practitioner, every time
  • In the room or online, your choice each week
  • A pause button, no questions asked
  • A closing session when you decide to end
About this block

Checklist SplitPRO

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.

Feature283: Checklist Split

A checklist split: a portrait photograph drifting inside its frame on one side, and on the other a heading, an intro, six ticked benefits in two columns and a pill.

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

Base UI flavor

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

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

Quick start

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

tsx
import { Feature283, feature283Demo } from "@/components/beste/block/feature283";

export default function Page() {
  return <Feature283 {...feature283Demo} />;
}

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

tsx
import { Feature283 } from "@/components/beste/block/feature283";

export default function Page() {
  return (
    <Feature283
      eyebrow="Included with every plan"
      heading="The small things that make the hour hold."
      description="Whatever rhythm you choose, these come with it."
      benefits={[
        "A written note after every session",
        "The same practitioner, every time",
        "A pause button, no questions asked",
      ]}
      button={{ label: "See the plans", href: "/pricing", tone: "dark" }}
      image={{ src: "/rooms/ledge.jpg", alt: "A ceramic vessel and a folded cloth on a plaster ledge" }}
    />
  );
}

Props

PropTypeDefaultDescription
eyebrowstringSmall-caps line above the heading
headingstringSection heading, rendered as an h2 through Text1
descriptionstringIntro under the heading
benefitsstring[][]Ticked lines, two across from sm
buttonActionButtonPill action under the list
image{ src: string; alt: string }Photograph in the left column
classNamestringExtra classes for the outer <section>
ts
type ActionButton = {
  label: string;
  href: string;
  tone?: "primary" | "light" | "dark" | "outline";
};

Behavior notes

  • Benefits are plain strings rather than objects, which is deliberate: this is a list of one-line promises, and giving each a title and a description would push it toward being a different block.
  • The tick sits in a bordered size-6 circle with shrink-0 and a mt-1 nudge, so a benefit that wraps to two lines keeps its mark aligned with the first line rather than centred against the pair.
  • Items enter with a 0.07s stagger, tighter than the card blocks in the set, because six short lines read as one list rather than as six things.
  • The button waits until 0.7s, after the whole list has resolved, so it does not arrive in the middle of the ticks appearing.
  • The two columns are vertically centred, so a short benefit list stays level with a tall portrait instead of riding at its top edge.
  • The photograph drifts -10% to 10% against a 1.2 scale and clears from blur(24px) on decode, with a complete check on mount for cached files.
  • Without image the copy column keeps its grid position rather than stretching to the full width.

More Feature blocks

View all Feature
PRO

feature108

Split Layout with Checklist Box

Two-column layout with heading/description on left and 2x4 grid of checkmark benefits on right. Great for feature highlights, benefit summary, or quick value propositions.

PRO

feature224

Capability Checklist Split

Two-column split with an eyebrow, big heading, description, and CTA on the left and a checklist of capabilities with rounded check seals on the right.

PRO

feature157

Split Image with Bullet List

Two-column layout with left text content and right image, reversible. Perfect for feature explanation, product story, or benefit illustration.

PRO

feature200

Feature with Two-Column Checklist and Image

Two-column feature section with badge, heading, description, a 2-column checklist of icon items (defaults to check icon), and CTA on one side, with a square image on the other. Image position is configurable.

PRO

feature288

Honest Comparison

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.

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.