17346 updated sips in line

This commit is contained in:
2025-07-29 12:30:20 +01:00
parent 4562e5f092
commit d0b2fd0996
10 changed files with 78 additions and 41 deletions
+18 -12
View File
@@ -1,6 +1,5 @@
import useTranslation from "next-translate/useTranslation";
import { useRouter } from "next/router";
import Link from "next/link";
export default function CaseComment() {
let { t } = useTranslation();
@@ -8,11 +7,18 @@ export default function CaseComment() {
const router = useRouter();
const { locale } = router;
return (
<div className="card" id="casescomment-card">
<div className="card-body">
<div id="casescomment-card">
<div className="card-body card-body govuk-!-padding-top-0">
<h3 className="heading-small card-heading">
{t("home:casescomment-card-title")}
</h3>
<p className="gouk-body-s">
{t("home:casescomment-card-paragraph-three")}
</p>
<p className="gouk-body-s">
{t("home:casescomment-card-paragraph-four")}
</p>
<p className="govuk-body-s">
{t("home:casescomment-card-paragraph-one")}{" "}
<a
@@ -25,15 +31,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"
>
{t("common:footer-contact-us-link-label")}
</Link>
</div>
<h3 className="heading-small card-heading">
{t("home:watch-case-card-title")}
</h3>
<p className="govuk-body-s">
{t("home:watch-case-paragraph-one")}
</p>
{/* <p className="govuk-body-s">
{t("home:casescomment-card-paragraph-two")}
</p> */}
</div>
</div>
);