// About page — company story, values, and expandable leadership grid. const ABOUT_TEAM = [ { name: 'Lynn Bruder', role: 'Chief Executive Officer', image: 'assets/images/about/lynn-bruder.jpg', linkedin: 'https://www.linkedin.com/in/lynnbruder/', bio: 'Lynn is a strategic business professional with a proven track record in building, managing, and operating successful companies. She collaborates with owners, investors, and operational teams to identify opportunities, streamline processes, and drive robust business initiatives.', }, { name: 'Steve Paolucci', role: 'Chief Technology Officer', image: 'assets/images/about/steve-paolucci.jpg', linkedin: 'https://www.linkedin.com/in/steven-paolucci/', bio: 'Steve is an accomplished Chief Technology Officer and co-founder with a track record of building healthcare and staffing technology platforms, including onboarding systems, automated scheduling, and AI-integrated interview tools.', }, { name: 'Byron Solvason', role: 'Chief Financial Officer', image: 'assets/images/about/byron-solvason.png', linkedin: null, bio: 'Byron is the financial compass at Nucleus Healthcare. His focus on transparency, trust, teamwork, and results helps keep the organization agile and positioned for sustainable growth.', }, { name: 'Matt Butler', role: 'Director, Business Development', image: 'assets/images/about/matt-butler.png', linkedin: 'https://www.linkedin.com/in/mattclarkbutler/', bio: 'Matt excels at identifying growth opportunities, mentoring high-performing teams, and fostering long-term partnerships. He helps align client goals with organizational success.', }, ]; const ABOUT_VALUES = [ { title: 'We wow our clients.', body: 'Listening and going above and beyond is our baseline.', tint: 'var(--atom-50)' }, { title: 'We deliver results.', body: 'Patient lives depend on it.', tint: 'var(--scrubs-50)' }, { title: 'We are committed.', body: 'Commitment is the spirit of our work.', tint: 'var(--proton-light)' }, { title: 'We are precise.', body: 'Details matter for quality outcomes.', tint: 'var(--sunset-50)' }, { title: 'We are change agents.', body: 'Impact starts on day one.', tint: 'var(--spark-50)' }, { title: 'We are one team.', body: 'Everyone has a voice at our table.', tint: 'var(--atom-50)' }, { title: 'We are fueled by passion and purpose.', body: 'And have fun while doing it.', tint: 'var(--proton-light)' }, ]; const AboutTeamCard = ({ person }) => { const [open, setOpen] = React.useState(false); return (

{person.name}

{person.role}

{person.linkedin && ( in )}

{person.bio}

); }; const AboutPage = () => { const { isMobile, isTablet } = useBreakpoint(); const heroPad = isMobile ? '100px 20px 44px' : '150px 60px 64px'; const twoCol = isMobile ? '1fr' : 'minmax(0, 0.9fr) minmax(0, 1.1fr)'; const teamCols = isMobile ? '1fr' : isTablet ? 'repeat(2, 1fr)' : 'repeat(4, 1fr)'; const valueCols = isMobile ? '1fr' : isTablet ? 'repeat(2, 1fr)' : 'repeat(4, 1fr)'; return ( <>
About Nucleus

Empowering the people who power healthcare.

Nucleus Healthcare brings white glove service and modern workforce technology together for healthcare and life sciences organizations.

{[ ['Mission', 'Empower the people who power healthcare.'], ['Vision', 'Redefine the way healthcare does business.'], ].map(([title, body]) => (
{title}

{body}

))}
Who we are

Trusted workforce partner. Built for healthcare.

Since 2017, Nucleus Healthcare has been empowering the healthcare workforce with advanced human capital management solutions. As a WBENC-certified woman-owned business, Nucleus is committed to providing exceptional experiences for candidates, partners, and team members while supporting women in healthcare.

With over 10,000 successful healthcare and life sciences placements, Nucleus is a trusted partner for permanent, contract-to-perm, and contract staffing solutions across all levels and roles.

Through education, training, and career pathing, Nucleus is helping develop the next generation of workers for healthcare, behavioral health, healthcare for education, and life sciences.

Meet our leadership team

Operators, builders, and healthcare workforce experts.

{ABOUT_TEAM.map(person => )}
The values that guide us
{ABOUT_VALUES.map(value => (

{value.title}

{value.body}

))}
); }; window.AboutPage = AboutPage;