/* ActiveFit360 marketing — Contact page */ const NS_ct = window.Activefit360DesignSystem_d87766; function ContactPage({ onBook }) { const { Card, Button, Badge } = NS_ct; const I = window.Icon; const c = window.AF_CONTACT; const rows = [ ['map-pin', 'Visit us', [c.address1, c.address2]], ['phone', 'Call', [c.phone]], ['printer', 'Referral fax', [c.fax]], ['mail', 'Email', [c.email]], ]; return (
{/* header */}
We're here to help

Let's get you moving

Reach out with a question or book directly — we'll confirm your visit within one business day.

{/* two-column layout */}
{/* left — info cards */}
{rows.map(([icon, label, lines]) => (
{label}
{lines.map(l =>
{l}
)}
))}
{/* right — Google Maps embed */}
); } Object.assign(window, { ContactPage });