Plain words
The language around therapy gets in the way more often than it helps. Each entry is a short page with no jargon in it.
An alphabetical index: each ruled row pairs a serif letter with a wrapped row of pill links, so a long glossary of pages stays scannable under a heading that settles in word by word.
An alphabetical index pairing a serif letter with a wrapped row of pill links, for a glossary that stays scannable.
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/feature308?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/feature308?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/feature308.tsx plus the button22 sliding-marker pill and the text1 word stagger it uses.
The installed file exports feature308Demo alongside the block: the exact props behind the preview above. Spread it to get a working linked Index Chips in one line.
import { Feature308, feature308Demo } from "@/components/beste/block/feature308";
export default function Page() {
return <Feature308 {...feature308Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Feature308 } from "@/components/beste/block/feature308";
export default function Page() {
return (
<Feature308
eyebrow="Plain words"
heading="Everything we say, explained once."
description="Each entry is a short page with no jargon in it."
button={ label: "Ask about a word", href: "/contact", tone: "outline" }
groups={[
{ letter: "B", entries: [{ label: "Boundaries", href: "/words/boundaries" }] },
]}
/>
);
}| 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 paragraph under the heading |
button | ActionButton | – | Pill action under a closing rule |
groups | Group[] | [] | Letter groups, in the order given |
className | string | – | Extra classes for the outer <section> |
type Entry = {
label: string;
href: string;
};
type Group = {
letter: string;
entries: Entry[];
};
type ActionButton = {
label: string;
href: string;
tone?: "primary" | "light" | "dark" | "outline";
};Link; the pills wrap freely, so a letter with twelve entries costs height rather than a horizontal scrollbar.4rem track, so the pills line up down the page whatever the letter.0.04, so a long index arrives as a run rather than forty separate reveals.feature300
Six hairline cards in a three-column grid, each one a whole link carrying a ringed icon, a serif title, a line of context and an arrow that lifts on hover, under a serif heading that settles in word by word beside a sliding-marker pill.
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.
feature309
Three numbered cards on a muted fill, each one a whole link that inverts to ink on hover, carrying a serif title, a paragraph of what happens at that step and a closing arrow link.
feature310
An intro and a pill on the left against a compact ruled list on the right, where every row is a link carrying a question, a short meta value and an arrow that lifts as the row tints.