diff options
author | Chen Wei <wei.chen@cobinhood.com> | 2019-09-05 15:08:37 +0800 |
---|---|---|
committer | Chen Wei <wei.chen@cobinhood.com> | 2019-09-05 15:08:37 +0800 |
commit | 19a7ff95b043bc93201639163c51c1908df36a75 (patch) | |
tree | 1d565cb70a93dd517bd0283b7856e5006b52c339 | |
parent | 27e197f49c3d73a21a471ab588b6eaf70c8dae18 (diff) | |
download | tangerine-official-website-19a7ff95b043bc93201639163c51c1908df36a75.tar.gz tangerine-official-website-19a7ff95b043bc93201639163c51c1908df36a75.tar.zst tangerine-official-website-19a7ff95b043bc93201639163c51c1908df36a75.zip |
add some basic schema markup
-rw-r--r-- | src/components/layout.js | 42 |
1 files changed, 40 insertions, 2 deletions
diff --git a/src/components/layout.js b/src/components/layout.js index f7693db..0451a9e 100644 --- a/src/components/layout.js +++ b/src/components/layout.js @@ -43,6 +43,40 @@ const Main = styled.main` let previousScrollPosition = 0; +const schema = { + "@context": "https://schema.org", + "@type": "Organization", + "url": "https://tangerine-network.io", + "name": "Tangerine Network", + "description": "A next-generation blockchain built on fast, fair, and secure consensus protocol", + "logo": site_logo, + "foundingDate": "2019", + "founders": [ + { + "@type": "Organization", + "name": "Byzantine Lab", + "url": "https://byzantine-lab.io", + "sameAs": [ + "https://www.linkedin.com/company/byzantine-lab/", + "https://www.facebook.com/Byzantine-Lab-460839568073884/" + ] + }, + ], + "contactPoint": { + "@type": "ContactPoint", + "email": "contact@tangerine-network.io", + "contactType": "Customer service", + "url": "https://tangerine-netowrk.io/", + }, + "owns": [ + { + "@type": "product", + "name": "Tangerine Network", + "url": "https://tangerine-network.io", + "color": "#e05b21", + } + ] +}; const InjectedSEO = injectIntl(({ intl }) => { const { site } = useStaticQuery( graphql` @@ -91,8 +125,12 @@ const InjectedSEO = injectIntl(({ intl }) => { <meta name="twitter:data1" value="5 min read" /> <meta name="twitter:app:name:iphone" content={intl.formatMessage({ id: 'Tangerine Network' }) } /> - <meta name="keywords" lang="en" content="tangerine, blockchain, decentralized"/> - <meta name="keywords" lang="zh" content="去中心化, 區塊鏈"/> + <meta name="keywords" lang="en" content="tangerine network, blockchain, decentralized, byzantine consensus algorithm"/> + <meta name="keywords" lang="zh" content="柑橘網路, 去中心化, 區塊鏈, 拜占庭共識演算法"/> + + <script type="application/ld+json"> + {JSON.stringify(schema)} + </script> </Helmet> ); }); |