/* ActiveFit360 marketing — site footer */ const NS_f = window.Activefit360DesignSystem_d87766; if (typeof document !== 'undefined' && !document.getElementById('af-foot-css')) { const s = document.createElement('style'); s.id = 'af-foot-css'; s.textContent = ` footer a { transition: color 0.18s ease; } footer a:hover { color: #ffffff !important; text-decoration: underline !important; } `; document.head.appendChild(s); } function SiteFooter({ onNavigate = () => {}, onBook = () => {} }) { const { Button } = NS_f; const I = window.Icon; const routes = window.AF_ROUTES; const quickLinks = [['About Us', 'about'], ['Reviews', 'reviews'], ['Recommended Products', 'affiliates'], ['Contact', 'contact'], ['Book Appointment', 'book']]; const onClick = (id) => (e) => { e.preventDefault(); id === 'book' ? onBook() : onNavigate(id); }; const hrefFor = (id) => id === 'book' ? '#' : routes[id]; return ( ); } Object.assign(window, { SiteFooter });