// Burger Summit 2026 — Hero + contagem regressiva const { useState: useStateH, useEffect: useEffectH } = React; // Evento: 17 Ago 2026, 07h (Recife, UTC-3) const EVENT_TS = new Date('2026-08-17T07:00:00-03:00').getTime(); function useCountdown(target) { const calc = () => { const diff = Math.max(0, target - Date.now()); const d = Math.floor(diff / 86400000); const h = Math.floor((diff % 86400000) / 3600000); const m = Math.floor((diff % 3600000) / 60000); const s = Math.floor((diff % 60000) / 1000); return { d, h, m, s }; }; const [t, setT] = useStateH(calc); useEffectH(() => { const id = setInterval(() => setT(calc()), 1000); return () => clearInterval(id); }, [target]); return t; } function Countdown() { const { d, h, m, s } = useCountdown(EVENT_TS); const cells = [[d, 'Dias'], [h, 'Horas'], [m, 'Min'], [s, 'Seg']]; return (
A Nação está formada. Dois dias de imersão com os gigantes do setor, feira de negócios com as maiores marcas e o networking que vai colocar a sua hamburgueria em outro patamar.