What you can count on
Sessions end when the hour ends, never because the next person is waiting.
No notes leave the room, and the ones we keep are yours to read at any time.
Switch practitioner, pause, or stop. There is no penalty and no persuasion.
Gently, and only when you ask, but we will not hide behind neutral nodding.
What you agree at the start is what you pay until you decide otherwise.
Ending well means you can come back, months or years later, without explaining.
A values grid: a serif heading settling in word by word beside the intro and a pill action, then six numbered promises in three columns whose top rules draw themselves in one after another, over a slowly drifting soft light.
Six promises in a numbered grid, each one under a hairline rule that draws itself in from the left as the item arrives.
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/feature277?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/feature277?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/feature277.tsx plus the button22 sliding-marker pill and the text1 word stagger it uses.
The installed file exports feature277Demo alongside the block: the exact props behind the preview above. Spread it to get a working promises grid in one line.
import { Feature277, feature277Demo } from "@/components/beste/block/feature277";
export default function Page() {
return <Feature277 {...feature277Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Feature277 } from "@/components/beste/block/feature277";
export default function Page() {
return (
<Feature277
eyebrow="What you can count on"
heading="Six promises we make before you say a word."
description="They are simple, and we keep them."
button={{ label: "Read our full commitments", href: "/commitments", tone: "outline" }}
values={[
{ title: "You will not be rushed", description: "Sessions end when the hour ends, never because the next person is waiting." },
{ title: "Nothing is recorded", description: "No notes leave the room, and the ones we keep are yours to read." },
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
eyebrow | string | – | Small-caps line above the heading |
heading | string | – | Section heading, rendered as an h2 through Text1 |
description | string | – | Short intro in the narrow right column |
button | ActionButton | – | Pill action under the intro |
values | Value[] | [] | Promises, numbered and up to three across |
className | string | – | Extra classes for the outer <section> |
type Value = {
title: string;
description: string;
};
type ActionButton = {
label: string;
href: string;
tone?: "primary" | "light" | "dark" | "outline";
};scaleX from a left origin, so it draws itself in rather than fading; a border-t could not be animated this way.0.15 + index * 0.12 against index * 0.1), so a line arrives just behind its item and the grid resolves as a set of drawn rules rather than a flash.tabular-nums, so a column of them stays aligned and nothing has to be kept in sync when a promise is added.ol, so the numbering is real rather than decorative, and the titles inside it are h3 under the section h2.sm and three at md, and the numbering follows the source order in every arrangement.md:col-start-9 and aligns it on md:justify-end, so it sits beside the foot of the heading instead of drifting under it.button is the only link in the section.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.
feature294
A header with a serif headline that settles in word by word and, at its right end, a rounded pill that copies the install command on click; below it a ruled two by three grid of thin icons, serif titles and short paragraphs that settle in one after another as they scroll into view.
feature275
A services section with a serif heading that settles in word by word beside its intro and pill button, then four staggered portrait cards whose photographs drift inside their frames as the page scrolls.
feature162
3-column grid of numbered steps with titles and descriptions. Ideal for onboarding flows, process overviews, and how-it-works sections.
feature284
A long serif statement that settles in word by word with a pill action on the left, and on the right four numbered, ruled points with serif titles and short descriptions that arrive in turn.
feature299
A centred serif headline that settles in word by word, then an ink panel that cycles through short request and reply pairs: the request in serif, the reply in mono a beat later, with thin progress bars to jump between them and a pause on hover. A pill that copies the install command on click and a sliding-marker pill close the section.