Skip to content

Commit

Permalink
Prettied up 404 page (#10884)
Browse files Browse the repository at this point in the history
  • Loading branch information
bvaughn committed Sep 27, 2017
1 parent 019b6a7 commit 9c0669a
Showing 1 changed file with 15 additions and 7 deletions.
22 changes: 15 additions & 7 deletions www/src/pages/404.js
Expand Up @@ -12,16 +12,24 @@
import Container from 'components/Container';
import Header from 'components/Header';
import React from 'react';
import {sharedStyles} from 'theme';

const PageNotFound = () => (
<Container>
<Header>Page Not Found</Header>
<p>
We couldn't 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 css={sharedStyles.articleLayout.container}>
<div css={sharedStyles.articleLayout.content}>
<Header>Page Not Found</Header>
<div css={sharedStyles.markdown}>
<p>
We couldn't 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>
</Container>
);

Expand Down

0 comments on commit 9c0669a

Please sign in to comment.