2018-02-09 10:53:59 -08:00
|
|
|
import React from 'react';
|
2018-03-15 15:35:58 -07:00
|
|
|
import NavBar from 'containers/NavBar';
|
2018-02-22 18:05:00 -08:00
|
|
|
import Helmet from 'react-helmet';
|
2018-02-09 10:53:59 -08:00
|
|
|
|
|
|
|
class FourOhForPage extends React.Component {
|
|
|
|
render () {
|
2018-03-15 10:54:41 -07:00
|
|
|
const {title, host} = this.props;
|
2018-02-09 10:53:59 -08:00
|
|
|
return (
|
|
|
|
<div>
|
2018-02-22 18:05:00 -08:00
|
|
|
<Helmet>
|
|
|
|
<title>{title} - 404</title>
|
|
|
|
<link rel='canonical' href={`${host}/404`} />
|
|
|
|
</Helmet>
|
2018-02-21 17:02:57 -08:00
|
|
|
<NavBar />
|
|
|
|
<div className='row row--padded'>
|
|
|
|
<h2>404</h2>
|
|
|
|
<p>That page does not exist</p>
|
2018-02-09 10:53:59 -08:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
export default FourOhForPage;
|