// Modals: AuthModal, CartDrawer, RevealModal (simplified, no full lightning sequence) const { useState: useStM, useEffect: useEfM, useRef: useRfM } = React; function AuthModal({ open, onClose, onSignIn }) { const [mode, setMode] = useStM('signin'); const [email, setEmail] = useStM(''); const [pwd, setPwd] = useStM(''); if (!open) return null; return (
{mode==='signin' ? 'Sign in to access your vault and store credit.' : 'Create an account to track your pulls.'}