// Employers page - adapted from the Nucleus Healthcare employers content. const EMPLOYER_PARTNERS = [ 'Hospitals & Healthcare Systems', 'Behavioral Health', 'Immigration Law Firms', 'Long-term Care', 'Laboratories', 'International Partners', ]; const EMPLOYER_SERVICES = [ { title: 'Hiring at scale', kicker: 'Critical and clinical roles', body: 'We hire for critical healthcare positions quickly through a high-tech, high-touch approach that keeps the experience personal while delivering large outcomes.', tint: 'var(--atom-50)', }, { title: 'International nurses', kicker: 'Global RN pathways', body: 'Build a dependable nurse pipeline with qualified international RNs who are supported through credentialing, licensing, immigration, and relocation.', tint: 'var(--scrubs-50)', }, { title: 'Onboarding excellence', kicker: 'Faster speed-to-lead', body: 'Our streamlined method helps reduce hiring and onboarding time for new talent and hiring managers, so you can move when the right person is ready.', tint: 'var(--sunset-50)', }, { title: 'Culture & retention', kicker: 'Mission-fit talent', body: 'We engage nurses, allied health, and healthcare operations professionals who align with your mission, values, and long-term workforce goals.', tint: 'var(--spark-50)', }, ]; const EMPLOYER_TESTIMONIALS = [ { quote: 'The Nucleus team has been a wonderful and positive impact on my department. I have onboarded several amazing employees in a very short amount of time through this company.', by: 'Hiring Manager', org: 'Supervisor, Pre-Analytical Laboratory', }, { quote: 'The Nucleus team escalates issues to our senior leaders quickly, so we can fix them quickly and efficiently. We really appreciate that.', by: 'Client Leadership', org: 'Healthcare partner', }, { quote: 'My one word to describe working with Nucleus Healthcare is exceptional.', by: 'Client Leadership', org: 'Healthcare partner', }, { quote: 'They are proactive individuals who seamlessly function as an extension of one\'s team.', by: 'Senior Director', org: 'Recruitment partner', }, ]; const EMPLOYER_IMAGES = [ 'assets/images/employers/employer-01.png', 'assets/images/employers/employer-02.png', 'assets/images/employers/employer-03.png', 'assets/images/employers/employer-04.png', 'assets/images/employers/employer-05.png', 'assets/images/employers/employer-06.png', ]; const EmployersImageMosaic = ({ isMobile }) => (
{EMPLOYER_IMAGES.map((image, index) => (
))}
); const EmployerServiceCard = ({ service }) => (

{service.kicker}

{service.title}

{service.body}

); const EmployerTestimonialCard = ({ item }) => (

"{item.quote}"

{item.by}

{item.org}

); const EmployersPage = () => { const { isMobile, isTablet } = useBreakpoint(); const heroPad = isMobile ? '100px 20px 46px' : '150px 60px 72px'; const heroGrid = isMobile ? '1fr' : 'minmax(0, 0.88fr) minmax(0, 1.12fr)'; const partnerCols = isMobile ? '1fr' : isTablet ? 'repeat(2, 1fr)' : 'repeat(3, 1fr)'; const serviceCols = isMobile ? '1fr' : isTablet ? 'repeat(2, 1fr)' : 'repeat(4, 1fr)'; const testimonialCols = isMobile ? '1fr' : isTablet ? 'repeat(2, 1fr)' : 'repeat(4, 1fr)'; return ( <>
For employers

Your trusted healthcare workforce partner.

Nucleus delivers permanent, contract-to-perm, and contract staffing solutions for healthcare teams that need great people and a partner who can move quickly.

Email our team See solutions
We partner with
{EMPLOYER_PARTNERS.map((partner) => (
{partner}
))}
Real people. Real results.

Experts backed by proven results.

{[ ['10,000+', 'hires in 4 years'], ['Permanent', 'contract-to-perm and contract staffing'], ['White glove', 'service with modern recruiting technology'], ].map(([stat, label]) => (

{stat}

{label}

))}
Healthcare recruiting and staffing

Built for hiring managers who need momentum.

{EMPLOYER_SERVICES.map((service) => )}
Client feedback

What clients and hiring managers are saying.

Nucleus functions as an extension of your team, staying responsive, organized, and focused on the people who will thrive in your organization.

{EMPLOYER_TESTIMONIALS.map((item) => )}
Partner with Nucleus

Hit your healthcare staffing goals with a partner built for speed and fit.

Tell us what roles you need to fill and where hiring pressure is highest. We will help you map the right path forward.

Contact sales@nucleushealthcare.com
); }; window.EmployersPage = EmployersPage;