/* === App === */ const TWEAK_DEFAULTS = /*EDITMODE-BEGIN*/{ "headline": "trust", "primary": "navy", "display": "fraunces", "density": 120 }/*EDITMODE-END*/; window.TWEAK_DEFAULTS = TWEAK_DEFAULTS; const App = () => { // Mirror tweaks for hero text variant const [hl, setHl] = React.useState(TWEAK_DEFAULTS.headline); React.useEffect(() => { const handler = (e) => { const d = e.detail || {}; if (d.headline) setHl(d.headline); }; window.addEventListener('juris-tweak', handler); return () => window.removeEventListener('juris-tweak', handler); }, []); return ( <>