Bordered Stack CTA
A storytelling-driven conversion section: three bordered boxes, each pairing an icon with a title and short description and alternating icon-left/icon-right alignment down the stack, build the case before a final bordered call-to-action box with a heading and button.
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/bordered-stack-cta.jsonPrefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/cta/cta34.tsx instead.
Usage
The file also exports cta34Demo, 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 { Cta34, cta34Demo } from "@/components/blocks/cta/cta34"; export default function Page() { return <Cta34 {...cta34Demo} />; }
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| eyebrow | string | "Why teams choose us" | Small label above the stack. |
| items | StackItem[] | none | The bordered value-prop rows, in order. |
| heading | string | none | Heading in the closing call-to-action box. |
| description | string | none | Supporting text in the closing call-to-action box. |
| buttonLabel | string | "Start free trial" | Label for the closing button. |
| buttonHref | string | "/signup" | Link for the closing button. |
| className | string | none | Extra classes for the outer section element. |
Types
interface StackItem { title: string; description: string; }
Behavior notes
- Fully static: icons are drawn from a fixed, hardcoded array and assigned by array position (a component reference can't be passed as prop data), alternating icon-left/icon-right by row index.
- The closing button is a real link to a placeholder route; nothing else in the block is interactive.
More CTA Blocks
View all →centered-newsletter-cta
Centered Newsletter CTA
Minimal centered call-to-action with heading, description, and action buttons.
split-layout-newsletter-cta
Split Layout Newsletter CTA
Two-column call-to-action with a decorative image on one side and a feature list plus subscribe form on the other.
newsletter-social-proof-cta
Newsletter CTA with Social Proof
Newsletter call-to-action with an avatar stack, subscriber count, and a testimonial quote.
banner-cta
Banner CTA
Horizontal banner call-to-action with heading and action buttons side by side.
stats-cta
Stats CTA
Call-to-action section with impressive statistics and trust indicators above action buttons.
multi-card-cta
Multi-Card CTA
Three action cards side by side, each offering a different path to conversion.