const Footer = () => { const [activeModal, setActiveModal] = React.useState(null); const modalContent = { privacy: { title: "Privacy Policy", body: ( <>
Stonecrest Recruiting respects your privacy. Information submitted through this website may be used to respond to inquiries, understand hiring needs, and communicate with practice owners or providers.
We may collect basic contact details such as name, email address, phone number, practice name, and hiring preferences. This information is not sold or shared with unrelated third parties.
By submitting a form or contacting Stonecrest Recruiting, you agree that we may use your information to follow up regarding recruiting services, provider placement, and related opportunities.
> ), }, terms: { title: "Terms of Use", body: ( <>This website is provided for informational purposes only. Using this website does not create a formal recruiting agreement, employment relationship, or placement guarantee.
Stonecrest Recruiting works to connect qualified provider talent with medical aesthetics and wellness practices, but final hiring decisions remain the responsibility of each practice.
Website content, branding, and materials may not be copied, reused, or redistributed without written permission from Stonecrest Recruiting.
> ), }, accessibility: { title: "Accessibility Statement", body: ( <>Stonecrest Recruiting is committed to making this website accessible and usable for all visitors.
If you experience difficulty accessing any part of this website or need assistance, please contact us at{" "} natalie@stonecrestrecruiting.com.
We will make reasonable efforts to improve accessibility and provide the information you need through an alternate communication method when necessary.
> ), }, }; const closeModal = () => setActiveModal(null); return ( <> {activeModal && (