import useTranslation from "next-translate/useTranslation"; import Link from "next/link"; import { useRouter } from "next/router"; export default function MakeNewAppeal() { let { t } = useTranslation(); const router = useRouter(); const { locale } = router; return (

{t("myportal:makenewappeal-card-title")}

{t("myportal:makenewappeal-card-paragraph-one")}{" "} {t("myportal:makenewappeal-card-link-label")}

{t("myportal:makenewappeal-card-paragraph-two")}

{t("myportal:makenewappeal-card-button-label")}

{t("myportal:makenewappeal-card-paragraph-three")}

{t("myportal:makenewappeal-card-paragraph-four")}

); }