// App for "O Grande Continente" page const TWEAK_DEFAULTS = /*EDITMODE-BEGIN*/{ "palette": "Selo", "typography": "Heráldico", "atmosphere": 1, "grain": true }/*EDITMODE-END*/; const PALETTE_MAP = { "Forja": "forja", "Selo": "selo" }; const TYPO_MAP = { "Heráldico": "heraldico", "Editorial": "editorial" }; function ContinenteApp() { const [t, setTweak] = window.useTweaks(TWEAK_DEFAULTS); React.useEffect(() => { document.documentElement.setAttribute("data-palette", PALETTE_MAP[t.palette] || "forja"); document.documentElement.setAttribute("data-typography", TYPO_MAP[t.typography] || "heraldico"); }, [t.palette, t.typography]); window.useReveal(); return ( <> {t.grain &&
}