// Sections.jsx — SectionHead, Intro, WhyUs (value pillars), WhatIsDPC teaser, About (Meet Azra) function SectionHead({ eyebrow, title, sub, center }) { return (
{eyebrow}

{title}

{sub &&

{sub}

}
); } /* ---- Calm intro band ---- */ function Intro() { return (

We started Peaceful Hearts because you deserve more than a hurried fifteen minutes. Here, care is calm and personal. You’re listened to, you’re known, and you never feel like just another name on the schedule.

); } /* ---- Value-pillar cards: "Why patients choose us" ---- */ const phPillars = [ { icon: 'clock', t: 'More time with you', d: 'Visits aren’t rushed, so we can really listen and focus on prevention, not just quick fixes.' }, { icon: 'message', t: 'Easy access', d: 'Message your provider through a secure portal and hear back within 24 hours. Same-day and next-day visits when you need them.' }, { icon: 'dollar', t: 'Simple, honest pricing', d: 'One monthly fee. No copays, no hidden costs, and no surprise bills in the mail.' }, { icon: 'heart', t: 'A real relationship', d: 'You see the same provider every time, someone who knows your history and your goals.' }, ]; function WhyUs() { return (
{phPillars.map(f => (

{f.t}

{f.d}

))}
See everything that’s covered
); } /* ---- "What is DPC" teaser (intro to the comparison block) ---- */ function WhatIsDPC() { return (
What is Direct Primary Care?

A simpler way to get care.

Instead of paying per visit through insurance, you pay one membership fee for longer visits, easy access, and a provider who’s there when you need them.

It works alongside your insurance, not in place of it. You keep your coverage for hospitals and specialists while your everyday care gets simpler.

Learn how DPC works
); } /* ---- About / Meet Azra (teaser) ---- */ function About() { return (
Meet your provider

Care starts with the person giving it.

Azra Dhanji, APRN, FNP-C, built Peaceful Hearts alongside like-minded healthcare professionals to give people the time and attention that’s so often missing from primary care.

You’ll see the same familiar face at every visit, someone who knows your history and your goals.

  • Board-certified Family Nurse Practitioner (FNP-C)
  • A small, capped panel, so you’re never rushed
  • The same provider every visit
Meet Azra
); } Object.assign(window, { SectionHead, Intro, WhyUs, WhatIsDPC, About });