Error
{statusCode ? `An error ${statusCode} occurred on server` : "An error occurred on the client"}
Go back homeimport 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` : "An error occurred on the client"}
Go back home