Included with every plan
Whatever rhythm you choose, these come with it. They are not extras; they are how the work stays with you between sessions.
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.
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.
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
npx shadcn add "https://ui.beste.co/r/feature283?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
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.
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.
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:
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" }}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
eyebrow | string | – | Small-caps line above the heading |
heading | string | – | Section heading, rendered as an h2 through Text1 |
description | string | – | Intro under the heading |
benefits | string[] | [] | Ticked lines, two across from sm |
button | ActionButton | – | Pill action under the list |
image | { src: string; alt: string } | – | Photograph in the left column |
className | string | – | Extra classes for the outer <section> |
type ActionButton = {
label: string;
href: string;
tone?: "primary" | "light" | "dark" | "outline";
};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.0.07s stagger, tighter than the card blocks in the set, because six short lines read as one list rather than as six things.0.7s, after the whole list has resolved, so it does not arrive in the middle of the ticks appearing.-10% to 10% against a 1.2 scale and clears from blur(24px) on decode, with a complete check on mount for cached files.image the copy column keeps its grid position rather than stretching to the full width.feature108
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.
feature224
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.
feature157
Two-column layout with left text content and right image, reversible. Perfect for feature explanation, product story, or benefit illustration.
feature200
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.