Why people stay
None of them is complicated. All of them are rare.
Sessions are never cut short for the next appointment. If a thought needs the whole hour, it gets the whole hour.
Plaster walls, a low bench, a kettle. The rooms were chosen so that sitting still for an hour feels reasonable.
No six-session promise, no plan you did not help write. The pace is yours, and slowing down is allowed.
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.
Three reasons in plain columns: a centred heading and intro, then circled icons above serif titles and paragraphs, with one 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.
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/feature281?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/feature281?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/feature281.tsx plus the button22 sliding-marker pill and the text1 word stagger it uses.
The installed file exports feature281Demo alongside the block: the exact props behind the preview above. Spread it to get a working feature columns in one line.
import { Feature281, feature281Demo } from "@/components/beste/block/feature281";
export default function Page() {
return <Feature281 {...feature281Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Feature281 } from "@/components/beste/block/feature281";
export default function Page() {
return (
<Feature281
eyebrow="Why people stay"
heading="Three things we do differently."
description="None of them is complicated. All of them are rare."
button={{ label: "See the whole approach", href: "/approach", tone: "outline" }}
columns={[
{ icon: Ear, title: "We listen to the end", description: "Sessions are never cut short for the next appointment." },
{ icon: Home, title: "It feels like a home", description: "Plaster walls, a low bench, a kettle." },
{ icon: Clock, title: "Nothing is rushed", description: "The pace is yours, and slowing down is allowed." },
]}
/>
);
}| 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 |
button | ActionButton | – | Pill centred under the columns |
columns | Column[] | [] | The three columns |
className | string | – | Extra classes for the outer <section> |
type Column = {
icon: LucideIcon;
title: string;
description: string;
};
type ActionButton = {
label: string;
href: string;
tone?: "primary" | "light" | "dark" | "outline";
};icon takes the Lucide component itself rather than a name string, so icons are tree-shaken with the rest of your bundle and there is no icon map to maintain. Import what you need from lucide-react and pass it in.size-12 circle of bg-muted on the page surface, the inverse of the card-based sibling in this family where the circle is light on a muted panel.0.12s stagger by index, so the row resolves left to right rather than as one block.md and a single column below it; there is no two-up step, because these are three reasons rather than an arbitrary list.h3 under the section h2, keeping the outline correct wherever the block sits.feature302
Three columns of ruled links under their own small-caps headings, each link a serif label over a line of context that fades on hover, so a whole directory of pages sits in one section under a heading that settles in word by word.
feature290
A ruled two-by-three grid of features, each cell with a bare icon, a serif title and a description, arriving row by row under a serif heading that settles in word by word and a sliding-marker pill.
feature161
3-column grid of horizontal feature items with icon and text side by side. Clean layout for capability highlights and feature overviews.
feature285
A feature list with a sticky column, where a serif heading settles in word by word above the intro and a pill action, beside ruled rows that each blur in with a round muted icon, a serif title and a description.