/* ============================================================
App shell — tweaks + mount
============================================================ */
const TWEAK_DEFAULTS = /*EDITMODE-BEGIN*/{
"heroLayout": "split",
"whichAppStyle": "cards",
"vibe": "white",
"accent": "#0E664F",
"showHowToVideo": true,
"showProof": true
}/*EDITMODE-END*/;
function App() {
const [t, setTweak] = useTweaks(TWEAK_DEFAULTS);
return (
<>
setTweak("heroLayout", v)} />
setTweak("vibe", v)} />
setTweak("accent", v)} />
setTweak("whichAppStyle", v)} />
setTweak("showHowToVideo", v)} />
setTweak("showProof", v)} />
>
);
}
ReactDOM.createRoot(document.getElementById("app")).render();