// mapemedia homepage — compose sections + Tweaks panel.
const HOME_TWEAK_DEFAULTS = /*EDITMODE-BEGIN*/{
"accent": "#B87333",
"headlineFont": "\"Cormorant Garamond\", Georgia, serif",
"heroVariant": "dark",
"heroHeadline": "Marken, *Visualisierungen* und Medien für Bau, Immobilien und Produkte",
"heroSub": "mapemedia entwickelt hochwertige Markenauftritte, fotorealistische Visualisierungen und Bild- sowie Filmwelten für Projekte in Bau, Architektur, Immobilien und Produktentwicklung. Von Branding und Webdesign über Visualisierung vor dem Bau bis hin zu Fotografie, Film und Produktdarstellung entsteht alles aus einem Guss — präzise, hochwertig und individuell auf jedes Projekt abgestimmt."
}/*EDITMODE-END*/;
function HomeApp() {
const [t, setTweak] = useTweaks(HOME_TWEAK_DEFAULTS);
// Apply + persist global look (accent, headline font) so it carries across pages.
React.useEffect(() => {
persistGlobalTweaks({ accent: t.accent, headlineFont: t.headlineFont });
}, [t.accent, t.headlineFont]);
return (
setTweak('accent', v)} />
setTweak('headlineFont', v)} />
setTweak('heroVariant', v)} />
setTweak('heroHeadline', v)} />
setTweak('heroSub', v)} />