From 4ed0a122fd5ae4e191e30785275b05a7f6bdaf43 Mon Sep 17 00:00:00 2001 From: Zinovii Dmytriv Date: Wed, 22 Mar 2023 19:26:35 +0200 Subject: [PATCH] Updated 404 page (#571) Co-authored-by: Zinovii Dmytriv --- src/theme/NotFound.js | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 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 000000000..64182c0a5 --- /dev/null +++ b/src/theme/NotFound.js @@ -0,0 +1,38 @@ +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 ( + <> + + +
+
+
+

+ + Page Not Found + +

+

+ + We could not find what you were looking for. + +

+
+
+
+
+ + ); +}