import { motion } from 'framer-motion' import { Direction, ModalId, replaceModal } from 'src/redux/features/modals.slice'; import { useAppDispatch } from 'src/utils/hooks'; import { ModalCard, modalCardVariants } from 'src/Components/Modals/ModalsContainer/ModalsContainer' import { IoLockClosed, } from 'react-icons/io5' import Button from 'src/Components/Button/Button'; export default function Login_NativeWalletCard({ onClose, direction, ...props }: ModalCard) { const dispatch = useAppDispatch(); const handleNext = () => { dispatch(replaceModal({ modalId: ModalId.Login_ExternalWallet, direction: Direction.NEXT })) } return (
lightning

bolt.fun/maker

Login to this site?

By clicking login, you allow ALBY wallet to anonymously login into bolt.fun/makers

) }