{t("common:error-page-title")}
-- {statusCode - ? `An error ${statusCode} occurred on server` - : t("common:error-page-message")} -
- - Go back home - -diff --git a/components/footerDocs/privacy_cy.js b/components/footerDocs/privacy_cy.js index 15f2dfcf..1a60d7c6 100644 --- a/components/footerDocs/privacy_cy.js +++ b/components/footerDocs/privacy_cy.js @@ -49,8 +49,8 @@ export default function PrivacyCY() { How we process any personal information including special category data you have voluntarily provided to us relating directly to you or any other third-party - individual's information you may have provided relating - to PEDW casework. + individual's information you may have provided + relating to PEDW casework.
- Information Commissioner's Office
+ Information Commissioner's Office
1 Wycliffe House
Water Lane, Wilmslow
diff --git a/components/footerDocs/privacy_en.js b/components/footerDocs/privacy_en.js
index 49305d34..faa90e2a 100644
--- a/components/footerDocs/privacy_en.js
+++ b/components/footerDocs/privacy_en.js
@@ -49,8 +49,8 @@ export default function PrivacyEN() {
How we process any personal information including
special category data you have voluntarily provided to
us relating directly to you or any other third-party
- individual's information you may have provided relating
- to PEDW casework.
+ individual's information you may have provided
+ relating to PEDW casework.
- Information Commissioner's Office
+ Information Commissioner's Office
1 Wycliffe House
Water Lane, Wilmslow
diff --git a/pages/500.js b/pages/500.js
deleted file mode 100644
index 974cdb3d..00000000
--- a/pages/500.js
+++ /dev/null
@@ -1,52 +0,0 @@
-import Link from "next/link";
-import Head from "next/head";
-import Header from "../components/header";
-import Banner from "../components/banner";
-import CookieBanner from "../components/cookieBanner";
-import useTranslation from "next-translate/useTranslation";
-import Footer from "../components/footer";
-
-function Error({ statusCode }, props) {
- let { t, lang } = useTranslation();
- const { footerLinks, pages } = props;
-
- return (
-
- {statusCode - ? `An error ${statusCode} occurred on server` - : t("common:error-page-message")} -
- - Go back home - -