Feature with Numbered Process Steps and CTA Card
A centered header sits above a 4-step numbered process row, connected by arrows between cards on desktop, followed by a wide CTA card combining a badge, heading, description, button, and image. Good for a 'how it works' section that ends on a direct call to action.
Docs
Installation
A real shadcn registry command, not a copy-paste stand-in: it fetches this block plus its badge, button, media-slot dependencies and any missing npm packages, and installs them straight into your project.
npx shadcn add https://staaarter.com/r/feature-numbered-steps-cta-card.jsonPrefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/feature/feature66.tsx instead.
Usage
The file also exports feature66Demo, 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 { Feature66, feature66Demo } from "@/components/blocks/feature/feature66"; export default function Page() { return <Feature66 {...feature66Demo} />; }
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| badge | string | undefined | Small centered label above the heading. |
| heading | ReactNode | none | Centered section heading. |
| description | string | undefined | Centered supporting paragraph. |
| steps | Feature66Step[] | none | Numbered process steps rendered in order, left to right. |
| ctaCard | Feature66CtaCard | none | Wide card below the steps with its own badge, heading, description, button, and image. |
| className | string | none | Extra classes for the outer section element. |
Types
interface Feature66Step { title: string; description: string; } interface Feature66CtaCard { badge?: string; heading: string; description?: string; buttonLabel: string; buttonHref: string; image: MediaSlotImage; }
Behavior notes
- Fully static Server Component: no event handlers, no client state.
- The arrow connectors between step cards are `hidden lg:block` decorative icons absolutely positioned between cards; they never appear on the 1- or 2-column mobile/tablet layout.
- The CTA card's button renders as a real Next.js Link via the button's render prop, but has no destination behavior beyond navigating to whatever href you supply.
More Feature Blocks
View all →Full-Bleed Workspace Band
Two-column header above a full-bleed image band with a live view switcher, closing on three numbered captions.
Center-Line Journey Timeline
Vertical hairline timeline alternating stages either side, dropping a phone frame on one step.
Figure-Led Evidence Rows
Tall image with a floating before-and-after card, leading into oversized-figure evidence rows.
Staircase Asset Trio
Three image tiles stepping down the page in a staircase, each floating a different live asset.
Sticky Reference List
Sticky heading column beside three labelled groups of checked capabilities, closing on a footnote.
Day Timeline Rows
Hairline rows walking through one working day, stamped with time and a live approval card inline.