Staaarter

Checklist CTA

Conversion section built around a short, scannable list of value-proposition checkmarks, centered above a primary and optional secondary call-to-action button. Ideal for reinforcing what a plan or product includes right before the ask.

By Staaarter Team
CTA
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/benefit-checklist-cta.json

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

Usage

The file also exports cta14Demo, 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 { Cta14, cta14Demo } from "@/components/blocks/cta/cta14";

export default function Page() {
  return <Cta14 {...cta14Demo} />;
}

Props

PropTypeDefaultDescription
eyebrowstringnoneSmall label above the heading.
headingReactNodenoneMain call-to-action heading.
descriptionstringnoneSupporting copy under the heading.
benefitsstring[]noneList of benefit checkmarks, rendered top to bottom.
primaryCtaCtaLinknonePrimary action button, label and destination.
secondaryCtaCtaLinknoneOptional secondary action button.
classNamestringnoneExtra classes for the outer section element.

Types

interface CtaLink {
  label: string;
  href: string;
}

Behavior notes

  • Fully static: the benefit list and both buttons are decorative links, no client-side state.
  • Checkmarks use lucide-react's Check icon and are purely visual; the benefit text itself carries the meaning.
  • Secondary button only renders when secondaryCta is provided.