94 lines
4.8 KiB
JavaScript
94 lines
4.8 KiB
JavaScript
import useTranslation from "next-translate/useTranslation";
|
|
import Head from "next/head";
|
|
import CookieBanner from "../components/cookieBanner";
|
|
import Header from "../components/header";
|
|
import Footer from "../components/footer";
|
|
import router from "next/router";
|
|
|
|
const StatusPage = (props) => {
|
|
let { t, lang } = useTranslation();
|
|
const { footerLinks, pages } = props;
|
|
|
|
return (
|
|
<div>
|
|
<Head>
|
|
<title>Site Status</title>
|
|
</Head>
|
|
<div id="page_wrapper">
|
|
<CookieBanner />
|
|
<Header />
|
|
<div className="govuk-width-container govuk-!-padding-bottom-9">
|
|
<main className="govuk-main-wrapper govuk-!-padding-top-9 govuk-!-padding-bottom-9">
|
|
<div className="govuk-grid-row">
|
|
<div
|
|
className="govuk-warning-text noticebanner govuk-!-margin-bottom-0"
|
|
key={1}
|
|
>
|
|
<strong className="govuk-warning-text__text">
|
|
<span className="govuk-visually-hidden">
|
|
Announcement
|
|
</span>
|
|
</strong>
|
|
<div>
|
|
<div className=" govuk-body-s">
|
|
<h2 className="govuk-heading-s">
|
|
{router.locale == "cy"
|
|
? "Cyhoeddiad"
|
|
: "Announcement"}
|
|
</h2>
|
|
</div>
|
|
<div className="govuk-body-s">
|
|
{router.locale == "cy" ? (
|
|
<>
|
|
<p>
|
|
Oherwydd gwaith cynnal a
|
|
chadw hanfodol, rydym yn
|
|
disgwyl rhywfaint o darfu ar
|
|
ein gwasanaethau Porth
|
|
Gwaith Achos rhwng 9-13
|
|
Chwefror 2026.{" "}
|
|
</p>
|
|
<p>
|
|
Ymddiheurwn am yr
|
|
anghyfleustra. Am ymholiadau
|
|
brys yn ystod y cyfnod hwn,
|
|
cysylltwch â{" "}
|
|
<a href="mailto:pedw.gwaithachos@llyw.cymru">
|
|
pedw.gwaithachos@llyw.cymru
|
|
</a>
|
|
</p>
|
|
</>
|
|
) : (
|
|
<>
|
|
<p>
|
|
Due to essential
|
|
maintenance, we are
|
|
expecting some disruption to
|
|
our Casework Portal services
|
|
between 9-13 February 2026.
|
|
</p>
|
|
<p>
|
|
We apologise for the
|
|
inconvenience. For urgent
|
|
enquries during this time
|
|
please contact{" "}
|
|
<a href="mailto:pedw.casework@gov.wales">
|
|
pedw.casework@gov.wales
|
|
</a>
|
|
</p>
|
|
</>
|
|
)}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
</div>
|
|
<Footer footerLinks={footerLinks} ticketnumber={props} />
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default StatusPage;
|