diff --git a/src/app/not-found.tsx b/src/app/not-found.tsx new file mode 100644 index 00000000..7d188b74 --- /dev/null +++ b/src/app/not-found.tsx @@ -0,0 +1,45 @@ +'use client'; + +import SiteGrid from '@/components/SiteGrid'; +import { PATH_ROOT } from '@/site/paths'; +import { clsx } from 'clsx/lite'; +import Link from 'next/link'; +import { usePathname } from 'next/navigation'; + +export default function NotFound() { + const pathname = usePathname(); + + return ( + +

+ 404 +

+
+
+ + {pathname} + + {' '} + could not be found +
+ + Return Home + +
+ + } /> + ); +}