Basic SEO implementation
This commit is contained in:
@@ -3,6 +3,7 @@ import Link from 'gatsby-link'
|
||||
|
||||
import PageIntro from '../components/PageIntro'
|
||||
import Card from '../components/Card'
|
||||
import SEO from '../components/SEO'
|
||||
|
||||
import PageTransition from 'gatsby-plugin-page-transitions'
|
||||
|
||||
@@ -11,6 +12,7 @@ class Blog extends Component {
|
||||
const data = this.props.data
|
||||
return (
|
||||
<PageTransition>
|
||||
<SEO siteTitle="Saburly - Blog Posts" siteDescription="Bugs keep us busy, but sometimes we find the time to have fun & publish" />
|
||||
<div className="container mx-auto p-4 w-full md:flex md:flex-wrap items-stretch w-full">
|
||||
{data.allWordpressPost.edges.map(({ node }) => (
|
||||
<div key={node.id} className="mt-4 md:w-1/2 p-2">
|
||||
|
||||
Reference in New Issue
Block a user