// Resources hub: two cards leading to Books & Articles and Video Library, plus YouTube channel banner. function ResourcesApp() { const [tweaks, setTweak] = useTweaks(/*EDITMODE-BEGIN*/{ "themeColor": "navy" } /*EDITMODE-END*/); useLucideIcons([tweaks]); useTweakBodyClasses(tweaks); return ( <>
A hand holding a digital workspace surrounded by PMO icons — knowledge, reports, dashboards, teams, and tools
{t("resources.eyebrow")}

{t("resources.title")}

{t("resources.sub")}

{t("resources.card1Title")}

{t("resources.card1Body")}

{t("resources.card1Cta")}

{t("resources.card3Title")}

{t("resources.card3Body")}

{t("resources.card3Cta")}

{t("resources.ytTitle")}

{t("resources.ytBody")}

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