Merge pull request #1702 from SkynetLabs/website-no-index

disable indexing portal website
This commit is contained in:
Karol Wypchło 2022-02-13 15:50:55 +01:00 committed by GitHub
commit 7c3ebda759
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 0 deletions

View File

@ -78,6 +78,16 @@ function SEO({ description, lang, meta, title }) {
name: `twitter:description`,
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)}
>
<script type="text/javascript">{matomoTagManagerScript}</script>