Skip to content

Commit 738c235

Browse files
authored
Add more global metadata tags to improve SEO (#5659)
* SEO improvements * lengthen short meta descriptions * more changes * revert check * revert check changes * replace md apos * Add missing global metadata tags - SEO * align description w/sumologic.com
1 parent 27a3d9b commit 738c235

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

docusaurus.config.js

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -241,12 +241,15 @@ module.exports = {
241241
},
242242
// SEO Global Metadata
243243
metadata: [
244-
{
245-
name: 'keywords', content: 'sumo logic, documentation, tutorials, quickstarts',
246-
},
247-
{
248-
name: 'msvalidate.01', content: 'BA6FBE48309F6E1CFFD055E769857586'
249-
},
244+
{ name: 'keywords', content: 'sumo logic, documentation, tutorials, quickstarts' },
245+
{ name: 'msvalidate.01', content: 'BA6FBE48309F6E1CFFD055E769857586' },
246+
{ name: 'description', content: 'Sumo Logic Docs - best-in-class cloud monitoring, log management, Cloud SIEM tools, and real-time insights for web and SaaS based apps.' },
247+
{ property: 'og:site_name', content: 'Sumo Logic Docs' },
248+
{ property: 'og:description', content: 'Sumo Logic Docs - best-in-class cloud monitoring, log management, Cloud SIEM tools, and real-time insights for web and SaaS based apps.' },
249+
{ property: 'og:image', content: 'https://www.sumologic.com/wp-content/uploads/meta-HomePage_1200x628-1.png' },
250+
{ property: 'og:image:width', content: '1200' },
251+
{ property: 'og:image:height', content: '628' },
252+
{ property: 'og:image:alt', content: 'Sumo Logic Docs' },
250253
],
251254
announcementBar: {
252255
id: 'blackhat',

src/pages/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export const Home = () => {
1616
return (
1717
<ErrorBoundary>
1818
<Layout
19-
description='Sumo Logic docs - real-time alerting, security, dashboards, and machine-learning-powered analytics for all three types of telemetry — logs, metrics, and traces.'
19+
description='Sumo Logic Docs - best-in-class cloud monitoring, log management, Cloud SIEM tools, and real-time insights for web and SaaS based apps.'
2020
title='Home'
2121
>
2222
{/* H1 hidden, but visible to crawlers */}

0 commit comments

Comments
 (0)