fix: Handle doc not found / no permission

closes #1021
This commit is contained in:
Tom Moor
2019-08-21 22:11:54 -07:00
parent e2b28dfeb7
commit 54565fff74
2 changed files with 24 additions and 30 deletions

View File

@@ -8,11 +8,12 @@ const Error404 = () => {
return (
<CenteredContent>
<PageTitle title="Not Found" />
<h1>Not Found</h1>
<Empty>We were unable to find the page youre looking for.</Empty>
<p>
Go to <a href="/">homepage</a>.
</p>
<h1>Not found</h1>
<Empty>
We were unable to find the page youre looking for. Go to the&nbsp;<a href="/">
homepage
</a>?
</Empty>
</CenteredContent>
);
};