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("aboutDonor"); return (

{t("title")}

{/* Free Consultation */} {t("button")}
); } export default Donors;