diff --git a/apps/web/src/app/docs/not-found.tsx b/apps/web/src/app/docs/not-found.tsx new file mode 100644 index 00000000..679f54a1 --- /dev/null +++ b/apps/web/src/app/docs/not-found.tsx @@ -0,0 +1,47 @@ +import { ArrowLeft, BookOpenText, House } from "lucide-react"; +import Link from "next/link"; + +import { Button } from "@/components/ui/button"; +import { + Empty, + EmptyContent, + EmptyDescription, + EmptyHeader, + EmptyMedia, + EmptyTitle, +} from "@/components/ui/empty"; + +export default function DocsNotFound() { + return ( +
+ + + + + + Documentation page not found + + The docs page you requested does not exist or may have moved. Start from the docs index + or head back to the homepage. + + + + + + + + +
+ + Try the sidebar or search to find another page. +
+
+
+ ); +}