From f0e755ef8756f3d5324ff03887124ea9a1174f3f Mon Sep 17 00:00:00 2001 From: platform-mcp Date: Wed, 17 Jun 2026 11:55:49 +0530 Subject: [PATCH] agent: Add Money-Focused FAQ Section to Homepage --- src/components/HomepageFaq.astro | 224 +++++++++++++++++++++++++++++++ src/pages/index.astro | 8 ++ 2 files changed, 232 insertions(+) create mode 100644 src/components/HomepageFaq.astro diff --git a/src/components/HomepageFaq.astro b/src/components/HomepageFaq.astro new file mode 100644 index 0000000..04f1e1e --- /dev/null +++ b/src/components/HomepageFaq.astro @@ -0,0 +1,224 @@ +--- +// HomepageFaq — Money & process FAQ rendered just above the final CTA band. +// +// Why a dedicated component instead of reusing the "Common Questions" block +// further up the page: +// - The questions here target buyers in late-stage evaluation (cost, +// timeline, NDA, IP, GeM, stack). They convert better when surfaced next +// to the final CTA, not next to the testimonials. +// - Emitting FAQPage JSON-LD only once per page is the recommended pattern +// for rich-result eligibility. The existing FAQ block above also emits a +// FAQPage via — so this component renders ONLY the visible UI; the +// schema for these questions is appended to the parent's `faq` array in +// src/pages/index.astro so Google still sees a single, valid FAQPage with +// all 12 Q&A pairs. +// +// Accessibility: +// - Each question is a real +
+
+

+ {item.answer} +

+
+
+ + )) + } + + + +

+ Have a different question?{' '} + + Ask us directly → + +

+ + + + + + diff --git a/src/pages/index.astro b/src/pages/index.astro index f037ffe..841481d 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -4,6 +4,7 @@ import BaseLayout from '../layouts/BaseLayout.astro'; import SEO from '../components/SEO.astro'; import ClientLogos from '../components/ClientLogos.astro'; import InlineLeadForm from '../components/InlineLeadForm.astro'; +import HomepageFaq from '../components/HomepageFaq.astro'; // Benefits/Features data const benefits = [ @@ -716,6 +717,13 @@ const faqs = [ the lead can be segmented downstream. --> + + +