import ErrorComponent from "next/error" import Head from "next/head" // ------------------------------------------------------ // This page is rendered if a route match is not found // ------------------------------------------------------ export default function Page404() { const statusCode = 404 const title = "This page could not be found" return ( <> {statusCode}: {title} ) }