// About Us page function AboutApp() { const [tweaks, setTweak] = useTweaks(/*EDITMODE-BEGIN*/{ "themeColor": "navy" }/*EDITMODE-END*/); useLucideIcons([tweaks]); useTweakBodyClasses(tweaks); return ( <>
PMO Simplified — practical, experienced, focused on results
{t("about.eyebrow")}

{t("about.title")}

{t("about.intro")}

{t("about.practiceEyebrow")}

{t("about.practiceTitle")}

{t("about.practiceBody")}

20+
{t("about.stat1Label")}
12
{t("about.stat2Label")}
19
{t("about.stat3Label")}

{t("about.ctaTitle")}

{t("about.ctaBody")}

{t("about.ctaButton")}
setTweak("themeColor", v)} options={[ { value: "navy", label: "Navy" }, { value: "graphite", label: "Graphite" }, { value: "emerald", label: "Emerald" }, { value: "gold", label: "Gold" }, ]} /> ); } window.AboutApp = AboutApp;