2018-01-29 20:47:12 +01:00
|
|
|
import React from 'react';
|
2018-02-23 20:00:46 +01:00
|
|
|
import SEO from 'components/SEO';
|
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
|
|
|
|
|
|
|
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-24 02:57:23 +01:00
|
|
|
<SEO />
|
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;
|