What we work on
Each one has its own page, written by the practitioner who holds those sessions. Read whichever sounds like the year you are having.
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.
Six hairline cards in a three-column grid, each one a whole link: a ringed icon, a serif title, a line of context and an arrow that lifts on hover.
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/feature300?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/feature300?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/feature300.tsx plus the button22 sliding-marker pill and the text1 word stagger it uses.
The installed file exports feature300Demo alongside the block: the exact props behind the preview above. Spread it to get a working linked Card Grid in one line.
import { Feature300, feature300Demo } from "@/components/beste/block/feature300";
export default function Page() {
return <Feature300 {...feature300Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Feature300 } from "@/components/beste/block/feature300";
export default function Page() {
return (
<Feature300
eyebrow="What we work on"
heading="Six reasons people book a first hour."
description="Each one has its own page."
button={ label: "Ask about something else", href: "/contact", tone: "outline" }
cards={[
{
icon: "compass",
title: "Losing the thread",
description: "Work that used to matter, and the quiet after it stops.",
href: "/work",
},
]}
/>
);
}| 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 beside the heading |
cards | Card[] | [] | Linked cards, three across from lg |
className | string | – | Extra classes for the outer <section> |
type CardIcon = "compass" | "users" | "moon" | "leaf" | "message" | "calendar";
type Card = {
icon: CardIcon;
title: string;
description: string;
href: string;
};
type ActionButton = {
label: string;
href: string;
tone?: "primary" | "light" | "dark" | "outline";
};Link, so the icon, the title and the arrow are a single hit target rather than three destinations.icon is a key into a fixed map of six Lucide icons, and an unknown key falls back to Compass instead of rendering nothing.index % 3, so each row of three arrives as a row instead of the stagger growing down a long grid.motion-safe:, so the hover flourish is dropped for reduced motion while the card stays clickable.h-full, and the arrow is pushed to the foot by the margin above it.feature307
Four hairline cards, each a whole link that leads with a large serif figure and an optional unit, then a title, a line of context and an arrow that lifts on hover.
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.
feature311
Three bordered cards, each one a whole link with a photograph drifting across its top, a quiet category line, a serif title, an excerpt and an arrow pinned to the foot of the card.
feature304
One tall photographic card carrying the page worth reading first, beside a ruled column of three compact rows that split the remaining height evenly; every card and row is a whole link with an arrow that lifts on hover.