/* ============================================================ Screens — Part 1 Attract → Identify → Student Login → 2FA → Guest RF → Dues → Amount → Payment Method ============================================================ */ /* ============================================================ ATTRACT — fullscreen, touch-to-start ============================================================ */ const ScreenAttract = () => { const t = useT(); const { go, setLang } = window.AppState; const [tick, setTick] = React.useState(0); React.useEffect(() => { const i = setInterval(() => setTick(x => x + 1), 1000); return () => clearInterval(i); }, []); return (
{t.welcomeSub}
{t.studentLoginSub}
{t.twoFASub}
{t.guestScanSub}
{!manual ? ({t.yourDuesSub}
{t.amountSub}
{t.payMethodSub}