Add google schema.org

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

View File

@@ -22,6 +22,12 @@ const SEO = ({ ...props }) => (
<meta name="og:site_name" content="Saburly.com" />
<meta name="fb:app_id" content="1896398823783343" />
<meta name="og:type" content="website" />
<meta itemprop="name" content={props.siteTitle
? props.siteTitle
: '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} />
</Helmet>
)