updated with oauth, footer docs,

This commit is contained in:
2021-11-30 07:22:07 +00:00
parent f9f7b777e7
commit af5354d19f
32 changed files with 4790 additions and 250 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>
);
};