/* Main app — single full-bleed landing + tweaks panel */ function HostNav({ lockup }) { return (
Pertel · Intelligence by Schedii
[ Pertel § Theory ? Why
); } function App() { const [tweak, setTweak] = useTweaks(/*EDITMODE-BEGIN*/{ "lockup": "by", "density": "comfortable", "theme": "dark", "palette": "cyan" }/*EDITMODE-END*/); return ( <> {/* Hide the in-direction topnavs — host nav comes from here */}
setTweak('lockup', v)} /> setTweak('density', v)} /> setTweak('theme', v)} /> setTweak('palette', v)} /> ); } const root = ReactDOM.createRoot(document.getElementById('root')); root.render();