bdac93d7e1
* upload sourcemaps to sentry * report caught errors to sentry
22 lines
536 B
TypeScript
22 lines
536 B
TypeScript
import { Head } from "blitz";
|
|
|
|
import ErrorComponent from "../core/components/error-component";
|
|
|
|
// ------------------------------------------------------
|
|
// 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 (
|
|
<>
|
|
<Head>
|
|
<title>
|
|
{statusCode}: {title}
|
|
</title>
|
|
</Head>
|
|
<ErrorComponent statusCode={statusCode} title={title} />
|
|
</>
|
|
);
|
|
}
|