Skip to content

Commit e777186

Browse files
committed
update SEO tags
1 parent e0cffb4 commit e777186

File tree

2 files changed

+15
-7
lines changed

2 files changed

+15
-7
lines changed

docs/docusaurus.config.ts

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { themes as prismThemes } from 'prism-react-renderer'
66

77
const config: Config = {
88
title: 'Züs JS SDK',
9-
tagline: 'Simplifying JavaScript integration with the Züs Network.',
9+
tagline: 'Simplifying JavaScript integration with the Züs Network',
1010
favicon: 'img/favicon.ico',
1111

1212
// Set the production url of your site here
@@ -71,27 +71,30 @@ const config: Config = {
7171
{ name: 'robots', content: 'max-image-preview:large' },
7272
{
7373
name: 'description',
74-
content: 'Simplifying JavaScript integration with the Züs Network',
74+
content:
75+
'The Züs JS SDK is a JavaScript client library that provides a convenient interface for interacting with the Züs Network.',
7576
},
7677

7778
// Google / Search Engine Tags
7879
{ itemprop: 'name', content: 'Züs JS SDK' },
7980
{
8081
itemprop: 'description',
81-
content: 'Simplifying JavaScript integration with the Züs Network',
82+
content:
83+
'The Züs JS SDK is a JavaScript client library that provides a convenient interface for interacting with the Züs Network.',
8284
},
8385
{
8486
itemprop: 'image',
8587
content: 'https://0chain.github.io/js-sdk/img/social-card.png',
8688
},
8789

88-
// Facebook Meta Tags
90+
// Open Graph / Facebook Meta Tags
8991
{ property: 'og:url', content: 'https://0chain.github.io/js-sdk/' },
9092
{ property: 'og:type', content: 'website' },
9193
{ property: 'og:title', content: 'Züs JS SDK' },
9294
{
9395
property: 'og:description',
94-
content: 'Simplifying JavaScript integration with the Züs Network',
96+
content:
97+
'The Züs JS SDK is a JavaScript client library that provides a convenient interface for interacting with the Züs Network.',
9598
},
9699
{
97100
property: 'og:image',
@@ -103,7 +106,8 @@ const config: Config = {
103106
{ name: 'twitter:title', content: 'Züs JS SDK' },
104107
{
105108
name: 'twitter:description',
106-
content: 'Simplifying JavaScript integration with the Züs Network',
109+
content:
110+
'The Züs JS SDK is a JavaScript client library that provides a convenient interface for interacting with the Züs Network.',
107111
},
108112
{
109113
name: 'twitter:image',

docs/src/pages/index.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,11 @@ function HomepageHeader() {
3232
export default function Home(): JSX.Element {
3333
const { siteConfig } = useDocusaurusContext()
3434
return (
35-
<Layout title={siteConfig.title} description={siteConfig.tagline}>
35+
<Layout
36+
title={`${siteConfig.title} - ${siteConfig.tagline}`}
37+
// title={siteConfig.title}
38+
// description={siteConfig.tagline}
39+
>
3640
<HomepageHeader />
3741
<main>
3842
<HomepageFeatures />

0 commit comments

Comments
 (0)