const DS5 = window.MattiuzDesignSystem_ac598e;
const { WaveElement: WE5, Button: Btn5, Card: Cd5, Badge: Bd5, Toast: Ts5 } = DS5;
function InstHero({ t, title }) {
return (
);
}
function InstH2({ children }) {
return
{children}
;
}
function InstP({ children, style }) {
return {children}
;
}
function MailStrip({ t, c, go }) {
return (
{c.mail}
go("contact")}>{t.nav_contact}
);
}
function SustPage({ t, c, go }) {
return (
{c.p1}
{c.cert_over}
{c.cert_p}
);
}
function CarrPage({ t, c, go }) {
return (
{c.p1}
{c.areas.map((a, i) => (
{"0" + (i + 1)}
{a[0]}
{a[1]}
{i === 5 && (
)}
))}
);
}
function EticaPage({ t, c, go }) {
const [txt, setTxt] = React.useState("");
const [ok, setOk] = React.useState(false);
return (
{c.p1}
{c.pillars_t}
{c.pillars.map((p, i) => (
{i + 1}
{p}
))}
{c.comm_t}
{c.comm_p}
{c.canal_t}
{c.canal_p}
{ setTxt(""); setOk(true); }}>{c.canal_send}
setOk(false)} />
);
}
function LgpdPage({ t, c, go }) {
return (
{c.p1}
{c.facts.map((f) => (
{f[0]}
{f[1]}
))}
);
}
function InstPage({ k, t, go }) {
const c = t.inst[k];
const Body = { sust: SustPage, carr: CarrPage, etica: EticaPage, lgpd: LgpdPage }[k];
return (
);
}
Object.assign(window, { InstPage });