Nobody is cut off. The thought gets finished before the hour does.
A few lines from us within a day, yours to keep and read back.
Sessions until nine, Monday to Thursday, for the after-work hour.
Fridays along the river, on foot, rain permitting.
Nothing leaves the room except the note we write for you.
Arrive early, stay a little after. The waiting room is quiet on purpose.
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.
Six cells in a ruled grid that behaves like a table: icons above serif titles and short paragraphs, with vertical rules drawn only where the columns actually meet.
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/feature290?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/feature290?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/feature290.tsx plus the button22 sliding-marker pill and the text1 word stagger it uses.
The installed file exports feature290Demo alongside the block: the exact props behind the preview above. Spread it to get a working feature grid in one line.
import { Feature290, feature290Demo } from "@/components/beste/block/feature290";
export default function Page() {
return <Feature290 {...feature290Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Feature290 } from "@/components/beste/block/feature290";
export default function Page() {
return (
<Feature290
eyebrow="Everything, in one place"
heading="Six things that come with every hour."
button={{ label: "See how it works", href: "/how", tone: "outline" }}
cells={[
{ icon: Ear, title: "Listening to the end", description: "Nobody is cut off." },
{ icon: BookOpen, title: "A note the next day", description: "A few lines from us within a day." },
{ icon: Moon, title: "Evening hours", description: "Sessions until nine, Monday to Thursday." },
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
eyebrow | string | – | Small-caps line above the heading |
heading | string | – | Section heading, rendered as an h2 through Text1 |
button | ActionButton | – | Pill action beside the heading |
cells | Cell[] | [] | Grid cells, three across from md |
className | string | – | Extra classes for the outer <section> |
type Cell = {
icon: LucideIcon;
title: string;
description: string;
};
type ActionButton = {
label: string;
href: string;
tone?: "primary" | "light" | "dark" | "outline";
};nth-child selectors rather than by giving every cell a border, so no double line ever appears where two cells meet and the outer edges stay clean.sm and once for three columns at md, with the sm rules explicitly unset at md (md:[&:nth-child(2n)]:border-l-0). That is what keeps the grid correct at both widths instead of inheriting a rule in the wrong place.(index % 3) * 0.1 + Math.floor(index / 3) * 0.15, so the grid resolves left to right and top to bottom rather than as one long queue.icon takes the Lucide component itself, not a name string, so icons are tree-shaken with your bundle and there is no map to maintain.h3 under the section h2, and nothing in the grid is interactive.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.
feature277
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.
feature281
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.
feature162
3-column grid of numbered steps with titles and descriptions. Ideal for onboarding flows, process overviews, and how-it-works sections.