From 78ae53491342df04f4c5c24056ec3afc6ca34631 Mon Sep 17 00:00:00 2001 From: Sander Spies Date: Fri, 13 Mar 2020 15:28:24 +0100 Subject: [PATCH] Add NotFound component to fix build. Yay, docusaurus... --- gitlab-pages/website/src/theme/NotFound.js | 30 ++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 gitlab-pages/website/src/theme/NotFound.js diff --git a/gitlab-pages/website/src/theme/NotFound.js b/gitlab-pages/website/src/theme/NotFound.js new file mode 100644 index 000000000..955f51e2b --- /dev/null +++ b/gitlab-pages/website/src/theme/NotFound.js @@ -0,0 +1,30 @@ +/** + * Copyright (c) Facebook, Inc. and its affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */ + +import React from 'react'; +import Layout from '@theme/Layout'; + +function NotFound() { + return ( + +
+
+
+

Page Not Found

+

We could not find what you were looking for.

+

+ Please contact the owner of the site that linked you to the + original URL and let them know their link is broken. +

+
+
+
+
+ ); +} + +export default NotFound;