Read before you write
Each of these started as an email. We answered it properly once, and now the answer lives on its own page instead of in a reply nobody else can read.
Twelve answers
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.
An intro and a pill on the left against a compact ruled list of links on the right.
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/feature310?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/feature310?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/feature310.tsx plus the button22 sliding-marker pill and the text1 word stagger it uses.
The installed file exports feature310Demo alongside the block: the exact props behind the preview above. Spread it to get a working intro and Linked List in one line.
import { Feature310, feature310Demo } from "@/components/beste/block/feature310";
export default function Page() {
return <Feature310 {...feature310Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Feature310 } from "@/components/beste/block/feature310";
export default function Page() {
return (
<Feature310
eyebrow="Read before you write"
heading="The questions people send us, answered at length."
description="Each of these started as an email."
button={ label: "Ask a new one", href: "/contact", tone: "outline" }
listLabel="Twelve answers"
items={[
{ label: "What happens in a first session?", meta: "4 min", href: "/answers/first-session" },
]}
/>
);
}| 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 the intro |
listLabel | string | – | Quiet count above the list |
items | Item[] | [] | Linked rows on the right |
className | string | – | Extra classes for the outer <section> |
type Item = {
label: string;
meta?: string;
href: string;
};
type ActionButton = {
label: string;
href: string;
tone?: "primary" | "light" | "dark" | "outline";
};Link and tints on hover; the meta value and the arrow sit in the same trailing group so they never separate.meta is optional per row, and the arrow stays put whether or not a row carries one.0.04 per row, small enough that a long list still arrives as one movement.lg the two columns stack, intro first, which keeps the reading order intact.feature68
Vertical feature list with horizontal dividers, hover arrows, and clickable titles linking to detail pages. Perfect for feature overviews with navigation to learn more.
feature122
Vertical stacked list of linked topics with titles, subtitles, and chevron indicators. Perfect for documentation navigation, topic browsing, or content index.
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.
feature227
Sticky left intro paired with a stacked, numbered list of feature blocks, each with a title, description, and small image.