Staaarter

Benefits Checklist

A centered eyebrow and heading sit above a two-column responsive grid of benefit items, each pairing a checkmark icon with a title and short description, for a value-proposition or key-advantages section.

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/benefits-checklist-grid.json

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

Usage

The file also exports feature142Demo, 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 { Feature142, feature142Demo } from "@/components/blocks/feature/feature142";

export default function Page() {
  return <Feature142 {...feature142Demo} />;
}

Props

PropTypeDefaultDescription
eyebrowstringnoneSmall label above the heading.
headingstringnoneSection heading.
descriptionstringnoneSupporting copy under the heading.
benefitsFeature142Benefit[]noneCheckmark-led benefit items shown in the grid.
classNamestringnoneExtra classes for the outer section element.

Types

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

Behavior notes

  • Fully static server component, no client-side state.
  • Every item uses a single fixed CheckCircle2 icon rather than a per-item icon prop, since the checklist meaning doesn't vary item to item.