Skip to content
BaseLayer Themes

Docs

CTA01

Centered call-to-action with buttons

Live preview

Have a project in mind?

Tell me about your goals, timeline, and budget. I'll reply within one business day with next steps.

File: src/blocks/cta/CTA01.astro

Centered call-to-action band with gradient card and primary/secondary buttons. Common closing section on marketing pages.

Config (blocks.tscta)

cta: {
  heading: "Have a project in mind?",
  subheading: "Tell me about your goals, timeline, and budget…",
  primaryCta: "Start a conversation",
  primaryCtaUrl: "/contact/",
  secondaryCta: "Browse my work",
  secondaryCtaUrl: "/work/",
},

Add to a page

---
import CTA01 from "@/blocks/cta/CTA01.astro";
---

<CTA01 />

Inline:

<CTA01
  heading="Let's talk"
  subheading="Free 30-minute discovery call."
  primaryCta="Book a call"
  primaryCtaUrl="/contact/"
  secondaryCta="View work"
  secondaryCtaUrl="/work/"
/>

Props

Prop Config key Notes
heading / subheading cta.*
primaryCta / primaryCtaUrl cta.primary*
secondaryCta / secondaryCtaUrl cta.secondary* Both buttons always render

← CTA versions · Blocks overview