Skip to content

Commit

Permalink
addressing issue iterative#1119
Browse files Browse the repository at this point in the history
  • Loading branch information
merlyn committed Jun 1, 2020
1 parent ac92b2a commit 1159753
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/components/Page/DefaultSEO/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,11 @@ const DefaultSEO: React.FC<IDefaultSEOProps> = ({ pathname }) => {
const siteMeta = getSiteMeta()
const siteUrl = siteMeta.siteUrl
const metaTitle = siteMeta.title
const siteName = siteMeta.siteName
const metaDescription = siteMeta.description
const metaKeywords = siteMeta.keywords
const fullUrl = siteUrl + pathname


const meta: MetaProps[] = [
{
Expand All @@ -39,6 +41,10 @@ const DefaultSEO: React.FC<IDefaultSEOProps> = ({ pathname }) => {
property: 'og:title',
content: metaTitle
},
{
property: 'og:siteName',
content: siteName
},
{
property: 'og:description',
content: metaDescription
Expand Down

0 comments on commit 1159753

Please sign in to comment.