A client-side React section component that renders the "Share Your Experience" CTA block used on the Flamingo case-studies page, displaying review platform cards (G2, Capterra, TrustPilot, GetApp) alongside an embedded contact form. ## Key Components - **`ShareExperienceSection`** — Main exported component; composes the heading, subtitle, "How it works" block, review platform benefit cards, and a `ContactForm` into a unified CTA section. - **`ShareExperienceSectionProps`** — Interface exposing overridable props: `title`, `subtitle`, `howItWorksTitle`, `howItWorksBody`, `contactFormProps`, and `className`. - **`DEFAULT_CONTACT_FORM_PROPS`** — Pre-configured `ContactForm` defaults (prefilled reason/message, hidden fields, outline button style) matching the hub's `/case-studies` behavior; caller-supplied `contactFormProps` take precedence via spread order. ## Usage Example **Hub usage (auto-resolved context):** ```typescript router.push('/case-studies/thank-you'), }} /> ``` **Embed usage (brand-neutral override):** ```typescript ``` **Minimal usage (all defaults):** ```typescript ``` The inner `ContactForm` submits through the ambient `EndpointsRuntime.contactUrl` proxy, so no per-call-site API wiring is required for embedded deployments behind a `/content` reverse proxy.