Skip to content

Commit 00706f9

Browse files
committed
added meta tags
1 parent a0531d8 commit 00706f9

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/components/seo.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import React from "react"
99
import PropTypes from "prop-types"
1010
import Helmet from "react-helmet"
1111
import { useStaticQuery, graphql } from "gatsby"
12-
12+
import siteImage from "../images/fsgql_logo.png"
1313
function SEO({ description, lang, meta, title, url }) {
1414
const { site } = useStaticQuery(
1515
graphql`
@@ -69,6 +69,8 @@ function SEO({ description, lang, meta, title, url }) {
6969
name: `twitter:description`,
7070
content: metaDescription,
7171
},
72+
{ name: `twitter:image`, content: siteImage },
73+
{ name: `og:image`, content: siteImage },
7274
].concat(meta)}
7375
/>
7476
)

0 commit comments

Comments
 (0)