File: src/blocks/cta/CTA01.astro
Centered call-to-action band with heading, supporting text, and primary/secondary buttons.
Config (blocks.ts → cta)
cta: {
width: "standard",
heading: "Have a project in mind?",
subheading:
"Tell me about your goals, timeline, and budget. I'll reply within one business day with next steps.",
primaryCta: "Start a conversation",
primaryCtaUrl: "/contact/",
secondaryCta: "Browse my work",
secondaryCtaUrl: "/work/",
},
Add to a page
---
import CTA01 from "@/blocks/cta/CTA01.astro";
---
<CTA01 />
Props override matching keys from config:
<CTA01
heading="Custom headline"
/>
Props
| Prop | Config key | Type / values | Default / notes |
|---|---|---|---|
heading |
cta.heading |
string |
— |
subheading |
cta.subheading |
string |
— |
primaryCta |
cta.primaryCta |
string |
— |
primaryCtaUrl |
cta.primaryCtaUrl |
string |
— |
secondaryCta |
cta.secondaryCta |
string |
— |
secondaryCtaUrl |
cta.secondaryCtaUrl |
string |
— |
