diff --git a/src/app/not-found.tsx b/src/app/not-found.tsx index d40af4652a..cc595f65ef 100644 --- a/src/app/not-found.tsx +++ b/src/app/not-found.tsx @@ -2,6 +2,14 @@ import { usePathname } from "next/navigation" import { useMounted } from "nextra/hooks" +// @ts-expect-error +import { ThemeProvider } from "next-themes" + +import { NewFontsStyleTag } from "./fonts" +import { Button } from "./conf/_design-system/button" + +import "@/globals.css" +import "@/app/colors.css" export default function Page() { const pathname = usePathname() @@ -22,16 +30,38 @@ export default function Page() { }/issues/new?title=${encodeURIComponent(title)}&labels=${labels}` return ( -
-

404: Page Not Found

- - Submit an issue about broken link → - -
+ +
+ + +

Page not found

+
+ + +
+
+
+ ) +} + +function FourOhFourIcon({ className }: { className?: string }) { + return ( + + 404 + + + + ) }