spee.ch/react/components/FourOhFourPage/index.js

25 lines
595 B
JavaScript
Raw Normal View History

2018-02-09 19:53:59 +01:00
import React from 'react';
import NavBar from 'containers/NavBar';
import Helmet from 'react-helmet';
const { site: { title, host } } = require('../../../config/speechConfig.js');
2018-02-09 19:53:59 +01:00
class FourOhForPage extends React.Component {
render () {
return (
<div>
<Helmet>
<title>{title} - 404</title>
<link rel='canonical' href={`${host}/404`} />
</Helmet>
<NavBar />
<div className='row row--padded'>
<h2>404</h2>
<p>That page does not exist</p>
2018-02-09 19:53:59 +01:00
</div>
</div>
);
}
};
export default FourOhForPage;