2018-01-29 11:47:12 -08:00
|
|
|
import React from 'react';
|
2018-02-23 11:00:46 -08:00
|
|
|
import SEO from 'components/SEO';
|
2018-01-29 11:47:12 -08:00
|
|
|
import NavBar from 'containers/NavBar';
|
|
|
|
import PublishTool from 'containers/PublishTool';
|
2018-02-22 18:05:00 -08:00
|
|
|
|
|
|
|
class HomePage extends React.Component {
|
2018-01-29 11:47:12 -08:00
|
|
|
render () {
|
|
|
|
return (
|
|
|
|
<div className={'row row--tall flex-container--column'}>
|
2018-02-23 17:57:23 -08:00
|
|
|
<SEO />
|
2018-02-21 17:02:57 -08:00
|
|
|
<NavBar />
|
2018-01-29 11:47:12 -08:00
|
|
|
<div className={'row row--tall row--padded flex-container--column'}>
|
2018-02-21 17:02:57 -08:00
|
|
|
<PublishTool />
|
2018-01-29 11:47:12 -08:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-02-22 18:05:00 -08:00
|
|
|
export default HomePage;
|