Find your way in
Three ways through the same practice. Follow whichever one matches the question you arrived with.
By what you are carrying
By how you want to meet
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.
Three columns of ruled links under their own small-caps headings, so a whole directory of pages sits in one section.
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/feature302?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/feature302?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/feature302.tsx plus the button22 sliding-marker pill and the text1 word stagger it uses.
The installed file exports feature302Demo alongside the block: the exact props behind the preview above. Spread it to get a working grouped Link Columns in one line.
import { Feature302, feature302Demo } from "@/components/beste/block/feature302";
export default function Page() {
return <Feature302 {...feature302Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Feature302 } from "@/components/beste/block/feature302";
export default function Page() {
return (
<Feature302
eyebrow="Find your way in"
heading="Everything, grouped the way people ask for it."
description="Three ways through the same practice."
button={ label: "Talk to someone first", href: "/contact", tone: "outline" }
groups={[
{
title: "By what you are carrying",
links: [
{ label: "Grief and loss", description: "Held for as long as it takes", href: "/grief" },
],
},
]}
/>
);
}| 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 centred under the columns |
groups | Group[] | [] | Link groups, three across from md |
className | string | – | Extra classes for the outer <section> |
type GroupLink = {
label: string;
description?: string;
href: string;
};
type Group = {
title: string;
links: GroupLink[];
};
type ActionButton = {
label: string;
href: string;
tone?: "primary" | "light" | "dark" | "outline";
};Link with a hairline under it, so a group reads as a list of destinations rather than a paragraph with links in it.description is optional per entry, so a group can mix bare labels with explained ones without the rows losing their rhythm.md, keeping their headings so the grouping survives on a phone.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.
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.
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.
feature308
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.