Staaarter

Three Editorial Pillar Columns

A monochrome statement of guiding principles: three tall portrait images sit in a row, each grayscaled and paired beneath with a zero-padded numeral, a title, and a short description, in an editorial layout rather than a conventional feature grid.

By Staaarter Team
Feature
Docs
Live preview

Docs

Installation

A real shadcn registry command, not a copy-paste stand-in: it fetches this block plus its media-slot dependencies and any missing npm packages, and installs them straight into your project.

npx shadcn add https://staaarter.com/r/three-editorial-pillar-columns.json

Prefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/feature/feature39.tsx instead.

Usage

The file also exports feature39Demo, the exact props behind the preview above. Spread it to get a working section in one line, then replace it with your own data.

import { Feature39, feature39Demo } from "@/components/blocks/feature/feature39";

export default function Page() {
  return <Feature39 {...feature39Demo} />;
}

Props

PropTypeDefaultDescription
eyebrowstringundefinedSmall uppercase label above the heading; omitted entirely when unset.
headingReactNodenoneSection heading.
pillarsPillarColumn[]noneThree (or more) pillar columns rendered in array order.
classNamestringundefinedExtra classes for the outer section element.

Types

type PillarColumn = {
  numeral: string;
  title: string;
  description: string;
  image?: { src: string; alt: string };
};

Behavior notes

  • Plain server component with no interactivity; the entire layout is static markup.
  • Each portrait image is rendered with a CSS grayscale filter to keep the section monochrome regardless of the source photo's color.
  • Columns stack to a single column below the sm breakpoint.