);
}
function Pillars({ eyebrow, title, lead, items, alt }) {
return (
{items.map((it, i) => (
{it.t}
{it.d}
))}
);
}
function PageCTA({ onContact, title, text }) {
return (
{title}
{text}
);
}
/* ---------- solution page (generic) -------------------------------------- */
function SolutionPage({ d, onContact }) {
return (
{d.media2 && }
);
}
/* ---------- About / Who We Are ------------------------------------------- */
function AboutPage({ onContact }) {
return (
);
}
/* ---------- Leadership --------------------------------------------------- */
const LEADERS = [
{
n: "Jean Drummond",
r: "President & Chief Executive Officer",
img: "jean-drummond.jpg",
lead: "A dynamic healthcare executive who founded HCDI in 1991 and has spent her career bridging the gaps between health policy, program implementation, and access to care.",
bio: [
"As President and Chief Executive Officer of HealthCare Dynamics International, Jean is a dynamic and knowledgeable healthcare professional with vast experience providing executive oversight on extensive quality services across the federal, state, county, community, and private health sectors.",
"Her strength lies in her ability to bridge the gaps between health policy, program implementation, and access to care for our most vulnerable populations. She founded HCDI in 1991 after a successful career as a practicing clinician. Her focus on placing only the best candidates — selected for skills, experience, work ethic, and drive — ensures clients receive excellent value on every contract.",
"Jean received her undergraduate degree as a Physician's Assistant from Howard University and earned her Master's in Public Administration in Health Care Management from Bowie State University. A devout mother of three and wife to Dr. Jimmie Drummond, a veteran of the U.S. Air Force, Jean believes her success rests in giving the greatest gift of all — love and service to mankind.",
],
social: [
{ ic: "linkedin", href: "https://www.linkedin.com/company/hcdinternational", label: "LinkedIn" },
{ ic: "twitter", href: "https://twitter.com/HCDI_Inc", label: "Twitter" },
{ ic: "facebook", href: "https://www.facebook.com/HCDIInc", label: "Facebook" },
{ ic: "youtube", href: "https://www.youtube.com/channel/UCzRsPFUNiOHzBaChAXbUt7g", label: "YouTube" },
],
},
{
n: "Michelle Pascaran",
r: "Vice President & Chief Operating Officer",
img: "michelle-pascaran.jpg",
lead: "Second in command at HCDI, Michelle leads day-to-day operations and multiple quality-management teams advancing community and population-health initiatives nationwide.",
bio: [
"As Vice President & Chief Operating Officer for HCDI, Michelle serves as second in command for the organization, working closely with the President & CEO to advance HCDI's strategic goals and objectives. She provides leadership and day-to-day oversight of HCDI's programs and leads multiple quality-management teams in the development and implementation of state and national community and population-health initiatives.",
"With over 15 years at HCDI, Michelle has served in various capacities across the organization, including programs with the Department of Health and Human Services, the Centers for Medicare & Medicaid Services, and the Department of Housing & Urban Development, among others.",
"Michelle earned dual undergraduate degrees in Government & Politics and Journalism, with a minor in Women's Studies, from the University of Maryland, College Park. Driven by her experience as a first-generation immigrant, she understands the challenges many of the most vulnerable face. Fluent in Tagalog, her passions include experiencing new adventures and cultures through travel — and spoiling her two dogs.",
],
social: [
{ ic: "linkedin", href: "https://www.linkedin.com/company/hcdinternational", label: "LinkedIn" },
{ ic: "twitter", href: "https://twitter.com/HCDI_Inc", label: "Twitter" },
{ ic: "facebook", href: "https://www.facebook.com/HCDIInc", label: "Facebook" },
{ ic: "youtube", href: "https://www.youtube.com/channel/UCzRsPFUNiOHzBaChAXbUt7g", label: "YouTube" },
],
},
];
function LeaderModal({ leader, onClose }) {
const open = !!leader;
return (