// mb-splash.jsx — animated opening / splash screen shown before the app function SplashScreen({ onDone, logo = "uploads/logomorarbem2.png" }) { const [leaving, setLeaving] = React.useState(false); React.useEffect(() => { const t1 = setTimeout(() => setLeaving(true), 2500); const t2 = setTimeout(() => onDone && onDone(), 3100); return () => { clearTimeout(t1); clearTimeout(t2); }; }, []); return (