Staaarter

Capability Checklist Split

A two-column split feature section: an eyebrow, big heading, description and a call-to-action button on the left, paired with a vertical checklist of capabilities on the right, each marked with a rounded, solid check seal.

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

npx shadcn add https://staaarter.com/r/capability-checklist-split.json

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

Usage

The file also exports feature45Demo, 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 { Feature45, feature45Demo } from "@/components/blocks/feature/feature45";

export default function Page() {
  return <Feature45 {...feature45Demo} />;
}

Props

PropTypeDefaultDescription
eyebrowstringnoneSmall label above the heading.
headingReactNodenoneLeft column heading.
descriptionstringnoneLeft column supporting copy.
ctaCtanoneOptional call-to-action button under the description.
capabilitiesCapability[]noneChecklist items rendered on the right, each with a rounded check seal.
classNamestringnoneExtra classes for the outer section element.

Types

type Cta = { label: string; href: string };

type Capability = { title: string; description?: string };

Behavior notes

  • Static server component, no client-side state.
  • The CTA is a real Link-backed button (render={<Link/>}); there is no form submission or other backend action to wire up.