// Main app — Shopify subdomain homepage const { useTweaks, TweaksPanel, TweakSection, TweakColor, TweakText, TweakRadio } = window; const { Nav, Hero, Marquee, Services, Cases, Process, Stack, Pricing, Testimonials, CTA, Footer } = window; const DEFAULTS = /*EDITMODE-BEGIN*/{ "headline": "We build Shopify stores that {{convert}} and scale.", "palette": "forest", "heroVariant": "form" }/*EDITMODE-END*/; function App() { const [t, setTweak] = useTweaks(DEFAULTS); React.useEffect(() => { document.body.className = `palette-${t.palette}`; }, [t.palette]); return (