added in accessibility content

This commit is contained in:
2021-11-29 17:35:52 +00:00
parent a157dbe2d3
commit 244cc093c3
12 changed files with 4487 additions and 25 deletions
+3 -8
View File
@@ -1,6 +1,8 @@
import Link from "next/link";
import { useRouter } from "next/router";
import useTranslation from "next-translate/useTranslation";
import TandCEN from "./footerDocs/tandc_en";
import TandCCY from "./footerDocs/tandc_cy";
const TermsAndConditionsStatement = (props) => {
let { t } = useTranslation();
@@ -16,14 +18,7 @@ const TermsAndConditionsStatement = (props) => {
id="main-content"
role="main"
>
<div className="govuk-grid-row">
<div className="govuk-grid-column-full">
<h1 className="govuk-heading-l govuk-!-margin-bottom-7">
{t("common:footer-terms-conditions-link-label")}
</h1>
<p>bkah blah</p>
</div>
</div>
{router.locale != "en" ? <TandCCY /> : <TandCEN />}
</main>
);
};