2018-01-29 20:47:12 +01:00
|
|
|
import React from 'react';
|
2018-02-23 03:05:00 +01:00
|
|
|
import Helmet from 'react-helmet';
|
2018-01-29 20:47:12 +01:00
|
|
|
import NavBar from 'containers/NavBar';
|
|
|
|
import PublishTool from 'containers/PublishTool';
|
|
|
|
|
2018-02-23 03:05:00 +01:00
|
|
|
const { site: { title, host } } = require('../../../config/speechConfig.js');
|
|
|
|
|
|
|
|
class HomePage extends React.Component {
|
2018-01-29 20:47:12 +01:00
|
|
|
render () {
|
|
|
|
return (
|
|
|
|
<div className={'row row--tall flex-container--column'}>
|
2018-02-23 03:05:00 +01:00
|
|
|
<Helmet>
|
|
|
|
<title>{title}</title>
|
|
|
|
<link rel='canonical' href={`${host}/`} />
|
|
|
|
</Helmet>
|
2018-02-22 02:02:57 +01:00
|
|
|
<NavBar />
|
2018-01-29 20:47:12 +01:00
|
|
|
<div className={'row row--tall row--padded flex-container--column'}>
|
2018-02-22 02:02:57 +01:00
|
|
|
<PublishTool />
|
2018-01-29 20:47:12 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-02-23 03:05:00 +01:00
|
|
|
export default HomePage;
|