Tell us about your move. We’ll respond within one business day.
`;
// append just after #root so it sits inside your page
const root = document.getElementById('root');
(root?.parentNode || document.body).appendChild(wrap);
}
if (!onContact && exists) {
exists.remove();
}
}
// run now + on hash changes + when React swaps content
addEventListener('hashchange', renderContact);
renderContact();
const mo = new MutationObserver(renderContact);
mo.observe(document.getElementById('root'), {childList:true, subtree:true});
})();