// page-services.jsx — "Comprehensive primary care for adults" const phServices = [ { icon: 'shield', t: 'Preventive care & annual physicals', d: 'Routine exams, screenings, and a wellness plan to catch things early.' }, { icon: 'video', t: 'Sick visits, in person or virtual', d: 'Same-day or next-day care, from home or the clinic.' }, { icon: 'activity', t: 'Chronic disease management', d: 'Steady, attentive care for things like high blood pressure and diabetes.' }, { icon: 'pill', t: 'Medication management', d: 'Careful reviews, monitoring, and refills, with easy follow-up.' }, { icon: 'heart', t: 'Women’s health', d: 'Routine women’s health care as part of your everyday care.' }, { icon: 'message', t: 'Mental health screening & support', d: 'Screening and supportive care, with referrals when needed.' }, { icon: 'refresh', t: 'Care coordination & referrals', d: 'We line up specialists, imaging, and outside care, and keep it connected.' }, { icon: 'dollar', t: 'Discounted labs & wellness', d: 'Lab work at discounted, near-cost pricing.' }, ]; const phAccess = ['Direct portal messaging with a reply within 24 hours', 'Same-day and next-day appointments', 'A weekly in-person clinic day', 'Telemedicine visits']; const phNotIncluded = ['Hospital or emergency care', 'Imaging', 'Specialist visits outside the practice', 'Medications']; function ServicesPage() { return (

Your membership covers a wide range of primary care for adults 18 and older, in person and by telemedicine.

{phServices.map((s, i) => { const tone = i % 2 === 0 ? 'green' : 'navy'; return (

{s.t}

{s.d}

); })}

How you reach us

    {phAccess.map(a =>
  • {a}
  • )}

Not included

    {phNotIncluded.map(a =>
  • {a}
  • )}

Keep insurance for those needs. Full detail is in the Patient Agreement.

); } renderApp();