import { useNavigate } from 'react-router-dom'; import { Button, Typography, Box } from '@mui/material'; import './Donate.css' const Donate = () => { const navigate = useNavigate(); const handleRegisterClick = () => { // Navigate to the /register route when the button is clicked navigate('/register'); }; return (

Your Donation Can Make a Difference

Join us in our mission to help those in need. By becoming a donor, you can contribute to creating a positive impact in the lives of many.
); }; export default Donate;