// Root composition + Tweaks panel for gohegan.net landing. const TWEAK_DEFAULTS = /*EDITMODE-BEGIN*/{ "theme": "light", "animate": true, "density": "cosy" }/*EDITMODE-END*/; const App = () => { const [t, setTweak] = useTweaks(TWEAK_DEFAULTS); // Apply theme to document root React.useEffect(() => { if (t.theme === 'dark') { document.documentElement.setAttribute('data-theme', 'dark'); } else { document.documentElement.removeAttribute('data-theme'); } }, [t.theme]); return ( <>