// Nav.jsx — uses window.__BASE for asset/link paths. // index.html: window.__BASE = ''; // pages/social/*.html etc: window.__BASE = '../../'; const Nav = () => { const base = (typeof window !== 'undefined' && window.__BASE) || ''; return ( ); }; window.Nav = Nav;