import React from 'react'; import Link from 'next/link'; import { useTranslation } from 'next-i18next'; const RacialJustice = () => { const { t } = useTranslation('racialJustice'); return (
{/*
  • By{' '} Jenny
  • Jan 11, 2022
*/}

{t("racialJustice.title")}

{t("racialJustice.paragraph1")}

{t("racialJustice.quote1")}

{t("racialJustice.paragraph2")}

{t("racialJustice.paragraph3")}

{t("racialJustice.quote2")}

{t("racialJustice.paragraph4")}

); }; export default RacialJustice;