/* global React, useReveal, Eyebrow, Container */
const { useState: useStateN, useEffect: useEffectN } = React;
function TopRibbon() {
return (
06 e 07 de julho, às 19h · ao vivo
);
}
function Nav() {
const [scrolled, setScrolled] = useStateN(false);
useEffectN(() => {
const on = () => setScrolled(window.scrollY > 14);
on();
window.addEventListener("scroll", on, { passive: true });
return () => window.removeEventListener("scroll", on);
}, []);
const links = [
["O que é", "#aprender"],
["Cronograma", "#programacao"],
["Sobre", "#sobre"],
["Investimento", "#planos"],
["FAQ", "#faq"],
];
return (
);
}
function Hero({ t }) {
return (
{t.heroEyebrow}
{t.heroLine1}{" "}
{t.heroItalic}
{t.heroLine2}
{t.heroLede}
Dias 6 e 7 de julho você vai começar a trabalhar com IA de forma
simples e prática.
06 e 07 de julho · Ao vivo · 30 dias de gravação
ao vivo · no Zoom
+15 anos de marketing.
ninguém te ensinou a usar o Instagram como ferramenta de
negócio. Eu vou!
);
}
Object.assign(window, { TopRibbon, Nav, Hero });