Three Icon Columns

Why people stay

Threethingswedodifferently.

None of them is complicated. All of them are rare.

We listen to the end

Sessions are never cut short for the next appointment. If a thought needs the whole hour, it gets the whole hour.

It feels like a home

Plaster walls, a low bench, a kettle. The rooms were chosen so that sitting still for an hour feels reasonable.

Nothing is rushed

No six-session promise, no plan you did not help write. The pace is yours, and slowing down is allowed.

About this block

Three Icon ColumnsPRO

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.

Feature281: Three Icon Columns

Three reasons in plain columns: a centred heading and intro, then circled icons above serif titles and paragraphs, with one pill centred underneath.

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.

Upgrade Now

Installation

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

bash
npx shadcn add "https://ui.beste.co/r/feature281?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

bash
npx shadcn add "https://ui.beste.co/r-base/feature281?email=YOUR_EMAIL&license_key=YOUR_KEY"

This installs the block to components/beste/block/feature281.tsx plus the button22 sliding-marker pill and the text1 word stagger it uses.

Quick start

The installed file exports feature281Demo alongside the block: the exact props behind the preview above. Spread it to get a working feature columns in one line.

tsx
import { Feature281, feature281Demo } from "@/components/beste/block/feature281";

export default function Page() {
  return <Feature281 {...feature281Demo} />;
}

Then replace the demo with your own props. Written out, a trimmed setup looks like this:

tsx
import { Feature281 } from "@/components/beste/block/feature281";

export default function Page() {
  return (
    <Feature281
      eyebrow="Why people stay"
      heading="Three things we do differently."
      description="None of them is complicated. All of them are rare."
      button={{ label: "See the whole approach", href: "/approach", tone: "outline" }}
      columns={[
        { icon: Ear, title: "We listen to the end", description: "Sessions are never cut short for the next appointment." },
        { icon: Home, title: "It feels like a home", description: "Plaster walls, a low bench, a kettle." },
        { icon: Clock, title: "Nothing is rushed", description: "The pace is yours, and slowing down is allowed." },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
eyebrowstringSmall-caps line above the heading
headingstringSection heading, rendered as an h2 through Text1
descriptionstringIntro under the heading
buttonActionButtonPill centred under the columns
columnsColumn[][]The three columns
classNamestringExtra classes for the outer <section>
ts
type Column = {
  icon: LucideIcon;
  title: string;
  description: string;
};

type ActionButton = {
  label: string;
  href: string;
  tone?: "primary" | "light" | "dark" | "outline";
};

Behavior notes

  • icon takes the Lucide component itself rather than a name string, so icons are tree-shaken with the rest of your bundle and there is no icon map to maintain. Import what you need from lucide-react and pass it in.
  • The heading and intro are centred while the columns are left aligned, which keeps a three-up row of paragraphs readable instead of ragged on both sides.
  • Icons sit in a size-12 circle of bg-muted on the page surface, the inverse of the card-based sibling in this family where the circle is light on a muted panel.
  • Columns enter with a 0.12s stagger by index, so the row resolves left to right rather than as one block.
  • The grid is fixed at three columns from md and a single column below it; there is no two-up step, because these are three reasons rather than an arbitrary list.
  • Column titles are h3 under the section h2, keeping the outline correct wherever the block sits.
  • The button is the only interactive element; the columns are copy and carry no hover state.

More Feature blocks

View all Feature
PRO

feature302

Grouped Link Columns

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.

PRO

feature290

Six Cell Grid

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.

PRO

feature161

Icon Row Feature Grid

3-column grid of horizontal feature items with icon and text side by side. Clean layout for capability highlights and feature overviews.

PRO

feature285

Sticky Icon List

A feature list with a sticky column, where a serif heading settles in word by word above the intro and a pill action, beside ruled rows that each blur in with a round muted icon, a serif title and a description.

PRO

feature287

Photo Steps

Three numbered steps in columns, each topped by a photograph that drifts inside its frame, with a serif title and a description, under a serif heading that settles in word by word and a sliding-marker pill.

FREE

feature230

Three editorial pillar columns

Three tall portrait images in a row, each paired with a padded numeral, title, and description — a monochrome statement of guiding principles.