File: src/blocks/faq/FAQ03.astro
Narrow left column: h3 intro title, supporting text, and a Button CTA (ctaVariant defaults to link) pinned to the bottom of the column with flex/mt-auto. Wider right column: h2 + border-separated accordion (first item open by default via FaqBorderAccordion).
Config (blocks.ts → faq03)
faq03: {
width: "wide",
introTitle: "Still curious?",
introText: "These cover the basics…",
cta: "Contact me",
ctaUrl: "/contact/",
ctaVariant: "link",
heading: "Frequently asked questions",
items: [{ question: "…", answer: "…" }],
iconStyle: "chevron",
initialState: "first-open",
padding: "lg",
},
Add to a page
---
import FAQ03 from "@/blocks/faq/FAQ03.astro";
---
<FAQ03 />
Props
| Prop | Config key | Notes |
|---|---|---|
introTitle / introText |
faq03.* |
Left column |
cta / ctaUrl / ctaVariant |
faq03.* |
Left CTA; default link |
heading |
faq03.heading |
Right column h2 |
items |
faq03.items |
{ question, answer }[] |
iconStyle / initialState |
faq03.* |
Accordion controls |
width / padding / borders |
— | Shared chrome |
