From c40d2df1e92b78e9024d9131efb4a801f33cd474 Mon Sep 17 00:00:00 2001 From: robbond Date: Wed, 28 Jan 2026 13:29:26 +0000 Subject: [PATCH] announcement page --- pages/status.js | 75 +++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 70 insertions(+), 5 deletions(-) diff --git a/pages/status.js b/pages/status.js index e59c8e59..17892561 100644 --- a/pages/status.js +++ b/pages/status.js @@ -1,28 +1,93 @@ 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 FourOhFour = (props) => { +const StatusPage = (props) => { let { t, lang } = useTranslation(); const { footerLinks, pages } = props; return (
- Status Up + Site Status
+ +
-
-

Status Up

+
+ + + Announcement + + +
+
+

+ {router.locale == "cy" + ? "Cyhoeddiad" + : "Announcement"} +

+
+
+ {router.locale == "cy" ? ( + <> +

+ Oherwydd gwaith cynnal a + chadw hanfodol, rydym yn + disgwyl rhywfaint o darfu ar + ein gwasanaethau Porth + Gwaith Achos rhwng 9-13 + Chwefror 2026.{" "} +

+

+ Ymddiheurwn am yr + anghyfleustra. Am ymholiadau + brys yn ystod y cyfnod hwn, + cysylltwch รข{" "} + + pedw.gwaithachos@llyw.cymru + +

+ + ) : ( + <> +

+ Due to essential + maintenance, we are + expecting some disruption to + our Casework Portal services + between 9-13 February 2026. +

+

+ We apologise for the + inconvenience. For urgent + enquries during this time + please contact{" "} + + pedw.casework@gov.wales + +

+ + )} +
+
+
); }; -export default FourOhFour; +export default StatusPage;