mirror of
https://github.com/graphql-hive/console
synced 2026-05-24 09:38:26 +00:00
9 lines
217 B
TypeScript
9 lines
217 B
TypeScript
import { NotFoundPage } from '@theguild/components';
|
||
|
||
export default function Page() {
|
||
return (
|
||
<NotFoundPage>
|
||
<h1 className="text-5xl">404 – This page could not be found</h1>
|
||
</NotFoundPage>
|
||
);
|
||
}
|