/* ActiveFit360 marketing — About page */ const NS_ab = window.Activefit360DesignSystem_d87766; if (typeof document !== 'undefined' && !document.getElementById('af-about-css')) { const s = document.createElement('style'); s.id = 'af-about-css'; s.textContent = `.af-btn--ghost.af-cta-ghost-dark:hover{ background:rgba(255,255,255,0.12) !important; color:#fff !important; }`; document.head.appendChild(s); } function PhotoOrInitials({ person, style }) { const I = window.Icon; if (person.photo) { return {person.name}; } const initials = person.name.split(' ').map(w => w[0]).join(''); return (
{initials}
Photo coming soon
); } function TeamMember({ person, reverse }) { const { Tag, Badge } = NS_ab; const I = window.Icon; return (
{person.role}

{person.name}, {person.creds}

{person.exp}

{person.bio}

{person.detail}

{person.tags.map(t => {t})}
Education
    {person.education.map(e =>
  • {e}
  • )}
{person.honors.length > 0 && (
Recognition
    {person.honors.map(h =>
  • {h}
  • )}
)}
); } function AboutPage({ onBook, onNavigate }) { const { Button, Badge, Card } = NS_ab; const I = window.Icon; const team = window.AF_TEAM; const values = [ ['heart-pulse', 'Compassionate care', 'Where care meets compassion — every patient feels heard and empowered.'], ['user', 'One-on-one, never rushed', 'A move away from high-volume clinics: real time and attention each session.'], ['target', 'Evidence-based plans', 'Individualized treatment grounded in current best practices.'], ['flower', 'Holistic & mindful', 'Yoga and meditation woven into recovery for body and mind.'], ]; return ( {/* intro */}

Expertise you trust. Care you deserve.

ActiveFit360 is a Naperville-based physical therapy and wellness practice founded by Nikita Goyal, PT, MS — built on personalized, one-on-one care that moves away from the rushed, high-volume clinic model.

{/* team */}
{team.map((p, i) => )}
{/* values */}
{values.map(([icon, title, desc]) => (

{title}

{desc}

))}
{/* cta */}

Ready to meet your therapist?

Book a one-on-one evaluation — no referral needed — and start your personalized recovery plan.

); } Object.assign(window, { AboutPage });