Add twitter meta tags

This commit is contained in:
Moris Zen
2018-09-12 14:12:09 +02:00
parent f8b9fc586c
commit 5f6b589e9f

View File

@@ -28,8 +28,16 @@ const SEO = ({ ...props }) => (
: 'Saburly - App Development & Mobile Design agency that makes you stand out'} />
<meta itemprop="description" content={props.siteDescription ? props.siteDescription : 'We are in the business of solving real-world problems with digital solutions. Our mission is to make you stand out with the help of modern technologies'} />
<meta itemprop="image" content={props.siteImage ? props.siteImage : ImgIntro} />
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content={props.siteTitle
? props.siteTitle
: 'Saburly - App Development & Mobile Design agency that makes you stand out'} />
<meta name="twitter:description" content={props.siteDescription ? props.siteDescription : 'We are in the business of solving real-world problems with digital solutions. Our mission is to make you stand out with the help of modern technologies'} />
<meta name="twitter:site" content="@saburly" />
<meta name="twitter:creator" content="@saburly" />
<meta name="twitter:image:src" content={props.siteImage ? props.siteImage : ImgIntro} />
</Helmet>
)
export default SEO