Skip to content
BaseLayer Themes

CTA 01

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 heading, supporting text, and primary/secondary buttons.

Config (blocks.tscta)

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

← CTA versions · Blocks overview