import React from 'react'; import Link from 'next/link'; import { useTranslation } from 'next-i18next'; const ClickHandler = () => { window.scrollTo(10, 0); } const Donors = () => { const { t } = useTranslation('(home)/homeCalltoAction'); return (

{t('donorsTitle')}

{/* $10 Donation */} {t('donorsButton')}
); } export default Donors;