diff --git a/src/theme/NotFound.js b/src/theme/NotFound.js new file mode 100644 index 00000000..6c1d2246 --- /dev/null +++ b/src/theme/NotFound.js @@ -0,0 +1,75 @@ +import React from 'react'; +import Translate, { translate } from '@docusaurus/Translate'; +import { PageMetadata } from '@docusaurus/theme-common'; +import Layout from '@theme/Layout'; + +export default function NotFound() { + return ( + <> + + +
+
+
+

+ + Oops... We couldn't find that page. + +

+

+ + We're sorry, but the page you're looking for has been moved or no longer exists. + +

+

+ + Please + {' '} + return to the homepage + to try to find what you need. +

+

+ + For XMTP documentation, please visit + {' '} + + docs.xmtp.org + . +

+

+ + To request help or report a bug, please + {' '} + + open an issue + . +

+

+ + We know how important it is to have reliable documentation and we appreciate your patience. + +

+
+
+
+
+ + ); +}