This repository has been archived on 2022-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
outline/app/scenes/Error404.js

21 lines
498 B
JavaScript
Raw Normal View History

2017-05-12 00:23:56 +00:00
// @flow
2018-05-05 23:16:08 +00:00
import * as React from 'react';
2016-08-03 11:55:56 +00:00
import CenteredContent from 'components/CenteredContent';
import PageTitle from 'components/PageTitle';
2018-06-08 04:35:40 +00:00
import Empty from 'components/Empty';
2016-08-03 11:55:56 +00:00
const Error404 = () => {
return (
<CenteredContent>
<PageTitle title="Not Found" />
<h1>Not Found</h1>
2018-06-08 04:35:40 +00:00
<Empty>We were unable to find the page youre looking for.</Empty>
<p>
Go to <a href="/">homepage</a>.
</p>
</CenteredContent>
);
};
2016-08-03 11:55:56 +00:00
export default Error404;