Objection Buster CTA
Call-to-action addressing common objections with question-and-answer pairs and a conversion button. Each objection and its rebuttal are shown as plain, always-visible text (not an accordion), ending in a single button. Perfect for overcoming hesitation right before the ask.
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/objection-buster-cta.jsonPrefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/cta/cta39.tsx instead.
Usage
The file also exports cta39Demo, 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 { Cta39, cta39Demo } from "@/components/blocks/cta/cta39"; export default function Page() { return <Cta39 {...cta39Demo} />; }
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| heading | string | "Still on the fence?" | Heading above the objection list. |
| description | string | "Here's what teams usually ask before switching." | Short supporting copy under the heading. |
| objections | Objection[] | none | Objection/rebuttal pairs, shown in order as plain question-answer text. |
| buttonLabel | string | "Start free trial" | Label for the closing conversion button. |
| buttonHref | string | "#" | Link target for the closing conversion button. |
| className | string | none | Extra classes for the outer section element. |
Types
interface Objection { question: string; answer: string; }
Behavior notes
- Objection/rebuttal pairs render as a plain `<dl>` list, every answer always visible; there is no accordion, expand/collapse, or client-side state involved despite the Q&A framing.
- The closing button is an inert link (`render={<Link/>}`) pointing at `#` by default; there is no real trial-start flow wired up.
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.