From abd2aab75203a53779557f1aafb0b60eaf5cce3d Mon Sep 17 00:00:00 2001 From: Jeffrey Hales Date: Thu, 11 Jun 2026 14:28:24 -0700 Subject: [PATCH] feat(library): restore live-site intro copy above post listings - add the two missing Library introduction paragraphs between the hero and article grid - match the live `/library` page structure without changing the shared library layout - keep the existing sidebar and card listing behavior intact --- www/src/pages/library/index.astro | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/www/src/pages/library/index.astro b/www/src/pages/library/index.astro index 2557099..58154ef 100644 --- a/www/src/pages/library/index.astro +++ b/www/src/pages/library/index.astro @@ -6,6 +6,10 @@ const posts = (await getCollection('blog', ({ data }) => data.lang === 'en' && ! const popular = posts.slice(0, 5); --- +
+

Welcome to the Library at AIA, where we share valuable insights, strategies, and resources to support individuals with autism, their families, and professionals in the field. Our articles explore key topics in Applied Behavior Analysis (ABA) therapy, including teaching self-advocacy, proactive and reactive strategies, and innovative intervention techniques.

+

We also highlight community events, success stories, and expert guidance to foster understanding and empowerment. Whether you're a parent, caregiver, educator, or advocate, our goal is to provide meaningful content that helps children with autism reach their highest potential in a compassionate and supportive environment. Stay connected with us as we continue to share knowledge and celebrate progress!

+
{posts.map((post) => )}