Staaarter

Numbered Steps Grid

A centered header above a 3-column grid of numbered step cards (01, 02, 03...), each with a title and description, for walking through a short onboarding or how-it-works flow.

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 dependencies and any missing npm packages, and installs them straight into your project.

npx shadcn add https://staaarter.com/r/numbered-steps-grid-3col.json

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

Usage

The file also exports feature95Demo, 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 { Feature95, feature95Demo } from "@/components/blocks/feature/feature95";

export default function Page() {
  return <Feature95 {...feature95Demo} />;
}

Props

PropTypeDefaultDescription
eyebrowstringnoneSmall label above the heading.
headingReactNodenoneSection heading.
descriptionstringnoneSupporting copy under the heading.
stepsStepItem[]noneStep cards rendered left to right, numbered by array position.
classNamestringnoneExtra classes for the outer section element.

Types

type StepItem = {
  title: string;
  description: string;
};

Behavior notes

  • Fully static server component, no client-side state.
  • Step numbers are derived from array index (`String(index + 1).padStart(2, "0")`), not stored as data on each item.
  • Each card is marked by a top accent border rather than a full card border, to read as a sequence rather than a set of unrelated tiles.