16920 contatus ui

This commit is contained in:
2025-05-27 18:08:41 +01:00
parent 87812a6bf2
commit b72df06349
5 changed files with 539 additions and 1 deletions
+1 -1
View File
@@ -60,6 +60,7 @@ const Header = (props) => {
"/myportal/searchresults",
"/myportal/representation",
"/myportal/viewall",
"/contactus",
];
const hasContactLink = [
@@ -280,7 +281,6 @@ const Header = (props) => {
}}
>
{" "}
wwww
{t("common:available-in")}
</Link>
</div>
+10
View File
@@ -1,5 +1,6 @@
import useTranslation from "next-translate/useTranslation";
import { useRouter } from "next/router";
import Link from "next/link";
export default function CaseComment() {
let { t } = useTranslation();
@@ -24,6 +25,15 @@ export default function CaseComment() {
<p className="govuk-body-s">
{t("home:casescomment-card-paragraph-two")}
</p>
<div className="govuk-form-group">
<Link
href={router.locale == "cy" ? "/cyswllt" : "/contactus"}
className="govuk-button withChevron govuk-button-cta"
>
Contact us
</Link>
</div>
</div>
</div>
);
+12
View File
@@ -171,6 +171,18 @@ let CaseSearch = (props) => {
>
{t("myportal:searchcases-card-advanced-link")}
</Link>
<div className="govuk-form-group govuk-!-margin-top-5">
<Link
href={
router.locale == "cy"
? "/cyswllt"
: "/contactus"
}
className="govuk-button withChevron govuk-button-cta"
>
Contact us
</Link>
</div>
</div>
</form>
</div>