// 404.js import useTranslation from "next-translate/useTranslation"; import Head from "next/head"; import Link from "next/link"; import CookieBanner from "../components/cookieBanner"; import Footer from "../components/footer"; import Header from "../components/header"; const FileNotAvailable = (props) => { let { t, lang } = useTranslation(); const { footerLinks, pages } = props; const previousURL = document.referrer; return (
{t("common:404-not-found-title")} -{" "} {t("common:service-name")}

File not available

At this time, the document you require is not available, please try again later.

Return to case details
); }; export default FileNotAvailable;