Services page structure

This commit is contained in:
Moris Zen
2018-07-07 00:28:15 +02:00
parent 81ab174b02
commit 24eb52048f
3 changed files with 15 additions and 4 deletions

View File

@@ -8,7 +8,7 @@ class Blog extends Component {
render() {
const data = this.props.data
return (
<div>
<main>
<PageIntro intro="Blog" headline="Occasionally we find the time to have fun and publish" sectionClasses="mb-16 lg:mb-4" />
<div className="container mx-auto p-4 w-full md:flex md:flex-wrap items-stretch w-full">
{data.allWordpressPost.edges.map(({ node }) => (
@@ -27,7 +27,7 @@ class Blog extends Component {
</div>
))}
</div>
</div>
</main>
)
}
}