From 044a5d44a5c48131ddfe79f81d4bc6e7e2028f43 Mon Sep 17 00:00:00 2001 From: J-Ha <5481259+jhaaaa@users.noreply.github.com> Date: Fri, 9 Aug 2024 13:29:49 -0700 Subject: [PATCH] add custom 404 page (#786) --- src/theme/NotFound.js | 75 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) create mode 100644 src/theme/NotFound.js 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. + +

+
+
+
+
+ + ); +}