fix: Home link on 'Not Found' page

This commit is contained in:
Tom Moor 2020-09-24 19:38:19 -07:00
parent a43cc9c5a9
commit d89808ce9d
1 changed files with 3 additions and 2 deletions

View File

@ -1,5 +1,6 @@
// @flow
import * as React from "react";
import { Link } from "react-router-dom";
import CenteredContent from "components/CenteredContent";
import Empty from "components/Empty";
import PageTitle from "components/PageTitle";
@ -10,8 +11,8 @@ const Error404 = () => {
<PageTitle title="Not Found" />
<h1>Not found</h1>
<Empty>
We were unable to find the page youre looking for. Go to the&nbsp;
<a href="/">homepage</a>?
We were unable to find the page youre looking for. Go to the{" "}
<Link to="/home">homepage</Link>?
</Empty>
</CenteredContent>
);