Files
aia-website/www/src/components/home/HomeFinancialHelp.astro
T
DeCentN2MadnessandClaude Sonnet 4.6 c2b49e66d9 refactor(home): move page content into per-language YAML sections
All visible text, lists, image refs, and CTAs for the home page now live
in en/index.md and es/index.md as a typed `sections:` frontmatter array.
HomePage.astro is reduced to a thin router; each section type is rendered
by a dedicated component in src/components/home/. Adds .no-balance utility
class to suppress text-wrap: balance on the commitments heading.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-09 12:06:23 -07:00

13 lines
361 B
Plaintext

---
import type { FinancialHelpSection } from '../../types/home-sections';
interface Props { section: FinancialHelpSection }
const { section } = Astro.props;
---
<section class="section">
<div class="container">
<h2>{section.heading}</h2>
<p>{section.body}</p>
<a class="button" href={section.cta.href}>{section.cta.label}</a>
</div>
</section>