We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb1d664 commit b5599beCopy full SHA for b5599be
1 file changed
src/app/not-found.tsx
@@ -1,17 +1,11 @@
1
"use client";
2
3
import NotFoundPage from "@/components/layout/NotFoundPage";
4
-// import Error from "next/error";
5
-
6
-// This page renders when a route like `/unknown.txt` is requested.
7
-// In this case, the layout at `app/[locale]/layout.tsx` receives
8
-// an invalid value as the `[locale]` param and calls `notFound()`.
9
10
export default function GlobalNotFound() {
11
return (
12
<html lang="en">
13
<body suppressHydrationWarning className="flex h-screen w-full items-center justify-center">
14
- {/* <Error statusCode={404} />; */}
15
<NotFoundPage />
16
</body>
17
</html>
0 commit comments