Merge branch 'fix-ci-pages' into 'dev'
Add NotFound component to fix build. Yay, docusaurus... See merge request ligolang/ligo!502
This commit is contained in:
commit
cf983d45ed
30
gitlab-pages/website/src/theme/NotFound.js
Normal file
30
gitlab-pages/website/src/theme/NotFound.js
Normal file
@ -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 (
|
||||||
|
<Layout title="Page Not Found">
|
||||||
|
<div className="container margin-vert--xl">
|
||||||
|
<div className="row">
|
||||||
|
<div className="col col--6 col--offset-3">
|
||||||
|
<h1 className="hero__title">Page Not Found</h1>
|
||||||
|
<p>We could not find what you were looking for.</p>
|
||||||
|
<p>
|
||||||
|
Please contact the owner of the site that linked you to the
|
||||||
|
original URL and let them know their link is broken.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</Layout>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export default NotFound;
|
Loading…
Reference in New Issue
Block a user