mirror of
https://github.com/facebook/docusaurus.git
synced 2025-05-03 20:27:20 +02:00
chore(v2): make feedback page accessible, not 404 (#1695)
* chore(v2): make feedback page accessible, not 404 * hack
This commit is contained in:
parent
8b60e93bcb
commit
71aefbcddc
1 changed files with 35 additions and 0 deletions
35
website/src/theme/NotFound.js
Normal file
35
website/src/theme/NotFound.js
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
/**
|
||||||
|
* Copyright (c) 2017-present, Facebook, Inc.
|
||||||
|
*
|
||||||
|
* 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';
|
||||||
|
import Feedback from '../pages/feedback';
|
||||||
|
|
||||||
|
function NotFound({location}) {
|
||||||
|
if (/^\/feedback/.test(location.pathname)) {
|
||||||
|
return <Feedback />;
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Layout title="Page Not Found">
|
||||||
|
<div className="container margin-vert--xl" data-canny>
|
||||||
|
<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…
Add table
Reference in a new issue