diff --git a/site/src/app/[domain]/[language]/not-found.tsx b/site/src/app/[domain]/[language]/not-found.tsx new file mode 100644 index 000000000..89b9ad758 --- /dev/null +++ b/site/src/app/[domain]/[language]/not-found.tsx @@ -0,0 +1,12 @@ +import Link from "next/link"; + +export default async function NotFound404() { + return ( + +
+Page not found.
+ Return Home + + + ); +}