console/packages/web/docs/src/app/not-found.tsx
Piotr Monwid-Olechnowicz 38eaa1d0ea
Hive Docs x Nextra 4 (#6089)
Co-authored-by: Dimitri POSTOLOV <dmytropostolov@gmail.com>
2025-01-27 14:58:08 +00:00

9 lines
217 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { NotFoundPage } from '@theguild/components';
export default function Page() {
return (
<NotFoundPage>
<h1 className="text-5xl">404 This page could not be found</h1>
</NotFoundPage>
);
}