From 6c1aa706853f95b5ef7cbeb52ece1c8b12a7b18c Mon Sep 17 00:00:00 2001 From: David Tuite Date: Tue, 8 Dec 2020 08:19:08 +0000 Subject: [PATCH] Improve SEO of microsite title (#3608) Many people will be searching for "service catalog" and "developer platform" when they are looking for something like Backstage. They may not have ever heard of Backstage before so they will not know to search for it. A title which includes the keywords "Service Catalog" and "developer platform" will rank better for those queries. This increases the change of Backstage being found by people who could make good use of it. [Standard advice](https://moz.com/learn/seo/title-tag) is to keep page titles under 60 chars. The proposed title is 49 chars. --- microsite/siteConfig.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/microsite/siteConfig.js b/microsite/siteConfig.js index 517cac2496..3e246172f0 100644 --- a/microsite/siteConfig.js +++ b/microsite/siteConfig.js @@ -12,7 +12,7 @@ const users = []; const siteConfig = { - title: 'Backstage', // Title for your website. + title: 'Backstage Service Catalog and Developer Platform', // Title for your website. tagline: 'An open platform for building developer portals', url: 'https://backstage.io', // Your website URL cname: 'backstage.io',