Multi-Card CTA
Multiple action cards with different tiers or options side by side, each with its own icon, title, short description, and button. Perfect for offering multiple paths like starting a free trial, booking a demo, and talking to sales.
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/multi-card-cta.jsonPrefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/cta/cta13.tsx instead.
Usage
The file also exports cta13Demo, 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 { Cta13, cta13Demo } from "@/components/blocks/cta/cta13"; export default function Page() { return <Cta13 {...cta13Demo} />; }
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| heading | string | "Choose how you'd like to get started" | Heading above the cards. |
| description | string | "Pick the path that fits your team, you can always switch later." | Short supporting copy under the heading. |
| cards | CtaCard[] | none | The action cards, each with its own icon, copy, and button. |
| className | string | none | Extra classes for the outer section element. |
Types
interface CtaCard { icon: LucideIcon; title: string; description: string; buttonLabel: string; buttonHref: string; }
Behavior notes
- Purely presentational: a centered heading and description above a 3-column grid of cards (stacks to 1 column on mobile).
- Each card's button is an inert link (`render={<Link/>}`) pointing at its own `buttonHref`, defaulting to `#`; there is no real trial-start, booking, or sales flow wired up.
- Icons are passed as `LucideIcon` component references in the `cards` prop since this is a server component; a client version could not accept a function prop this way.
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.
benefit-checklist-cta
Checklist CTA
Call-to-action with a vertical list of benefit checkmarks and action buttons.