// page-membership.jsx — "Simple, transparent membership" const phIncludes = ['Preventive care & annual physicals', 'Sick visits (in person & virtual)', 'Chronic disease management', 'Medication management', 'Women’s health', 'Mental health screening & support', 'Care coordination & referrals', 'Direct portal messaging with a reply within 24 hours', 'Discounted labs']; const phExtras = ['Labs (discounted, near-cost)', 'Medications', 'Imaging or specialist visits outside the practice']; function MembershipPage() { return ( {(t) => ( <>

Letting us know you’re interested is free and not a commitment. Azra will reach out personally to talk it through and answer your questions.

Every membership includes

    {phIncludes.map(i =>
  • {i}
  • )}

What may cost extra

    {phExtras.map(i =>
  • {i}
  • )}

No copays, no hidden fees, no surprise bills.

Good to know

DPC works alongside insurance and isn’t insurance itself. Keep a high-deductible or catastrophic plan for hospital, ER, and specialist needs. HSA and FSA funds may cover many qualified costs, though rules on membership fees vary, so check with your HSA provider or tax advisor.

)}
); } renderApp();