/* global React, Icon, Button, NAV */ const { useState: useStateF } = React; function Footer() { const cols = [ ["About HCDI", [["Who We Are", "who-we-are.html"], ["Leadership", "leadership.html"], ["The Dove Report", "dove-report.html"]]], ["Solutions", [["Health Plans", "health-plans.html"], ["Providers", "providers.html"], ["Communities", "communities.html"], ["Government", "government.html"], ["A.I.M. Platform", "aim.html"]]], ]; return ( ); } function ContactModal({ open, onClose }) { const [sent, setSent] = useStateF(false); const submit = (e) => { e.preventDefault(); setSent(true); }; const close = () => { onClose(); setTimeout(() => setSent(false), 300); }; return (
e.stopPropagation()}> {sent ? (

Thank you — we’ll be in touch.

A member of the HCDI team will reach out within one business day.

) : ( Connect with us

Partner with HCDI

Tell us about your population and goals — no pitch, a working conversation.

)}
); } Object.assign(window, { Footer, ContactModal });