import { Head, ErrorComponent } from "blitz"; // ------------------------------------------------------ // 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} ); }