diff --git a/src/components/atoms/SEO.jsx b/src/components/atoms/SEO.jsx index 0a353834..53bf9f5d 100644 --- a/src/components/atoms/SEO.jsx +++ b/src/components/atoms/SEO.jsx @@ -147,7 +147,7 @@ const SEO = ({ post, slug, postSEO }) => ( if (postSEO) { const postMeta = post.frontmatter - title = `${postMeta.siteTitle} ¦ ${siteMeta.siteDescription}` + title = `${postMeta.title} ¦ ${siteMeta.siteDescription}` description = postMeta.description ? postMeta.description : post.excerpt image = postMeta.image ? postMeta.image.childImageSharp.fluid.src : logo postURL = `${siteMeta.siteUrl}${slug}`