With Actions
Ready to get started?
Join 10,000+ teams already building with us. Free 14-day trial, no credit card required.
Minimal
Start building today
Props
| Prop | Type | Description |
|---|---|---|
| title | ReactNode | Main headline |
| subtitle | ReactNode | Supporting text below the title |
| actions | ReactNode | Action buttons |
| className | string | Additional classes on the root element |
Usage
<CTABanner
title="Ready to get started?"
subtitle="Free 14-day trial."
actions={
<>
<Button>Start Free Trial</Button>
<Button variant="outline">Talk to Sales</Button>
</>
}
/>