Merge pull request #1702 from SkynetLabs/website-no-index
disable indexing portal website
This commit is contained in:
commit
7c3ebda759
|
@ -78,6 +78,16 @@ function SEO({ description, lang, meta, title }) {
|
||||||
name: `twitter:description`,
|
name: `twitter:description`,
|
||||||
content: pageDescription,
|
content: pageDescription,
|
||||||
},
|
},
|
||||||
|
// do not index public portal pages until we switch to dedicated portal landing page
|
||||||
|
// otherwise skynetlabs.com and all its copies will be marked as duplicates by crawlers
|
||||||
|
{
|
||||||
|
name: "robots",
|
||||||
|
content: "noindex",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "googlebot",
|
||||||
|
content: "noindex",
|
||||||
|
},
|
||||||
].concat(meta)}
|
].concat(meta)}
|
||||||
>
|
>
|
||||||
<script type="text/javascript">{matomoTagManagerScript}</script>
|
<script type="text/javascript">{matomoTagManagerScript}</script>
|
||||||
|
|
Reference in New Issue