update donate button

This commit is contained in:
TheMaddax 2024-10-16 20:15:08 -06:00
parent 3f756f305f
commit 785931f523

View file

@ -145,19 +145,23 @@ const DonateButton: React.FC<{ onClick?: () => void }> = ({ onClick }) => {
className="modal" className="modal"
overlayClassName="overlay" overlayClassName="overlay"
> >
<div className="h-full flex flex-col">
<h2 className="text-2xl font-bold text-[#8C1D40] mb-4">Donate to MCDi</h2> <h2 className="text-2xl font-bold text-[#8C1D40] mb-4">Donate to MCDi</h2>
<div className="flex-grow overflow-y-auto">
<iframe <iframe
src="https://www.zeffy.com/embed/donation-form/1cbff18e-c057-4fa6-8276-a993037de0bb" src="https://www.zeffy.com/embed/donation-form/1cbff18e-c057-4fa6-8276-a993037de0bb"
width="100%" width="100%"
height="600px" height="100%"
frameBorder="0" frameBorder="0"
></iframe> ></iframe>
</div>
<button <button
onClick={closeModal} onClick={closeModal}
className="mt-4 bg-[#8C1D40] text-white font-bold py-2 px-4 rounded" className="mt-4 bg-[#8C1D40] text-white font-bold py-2 px-4 rounded"
> >
Close Close
</button> </button>
</div>
</Modal> </Modal>
</motion.div> </motion.div>
); );