Skip to content

Commit 4b65f0a

Browse files
committed
Website: add SEO and socials of o1Labs
1 parent 87b2a32 commit 4b65f0a

File tree

1 file changed

+38
-1
lines changed

1 file changed

+38
-1
lines changed

website/docusaurus.config.ts

Lines changed: 38 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,23 @@ const config: Config = {
6565
themeConfig: {
6666
// Replace with your project's social card
6767
image: 'img/docusaurus-social-card.jpg',
68+
69+
// SEO improvements and metadata
70+
metadata: [
71+
{name: 'keywords', content: 'OpenMina, Mina Protocol, Rust, blockchain, zero-knowledge proofs, zkProofs, cryptocurrency, decentralized'},
72+
{name: 'description', content: 'OpenMina is a Rust implementation of the Mina Protocol - a lightweight blockchain using zero-knowledge proofs. Learn how to run nodes, develop applications, and understand the protocol.'},
73+
{name: 'author', content: 'o1Labs'},
74+
{name: 'robots', content: 'index,follow'},
75+
{name: 'googlebot', content: 'index,follow'},
76+
{property: 'og:type', content: 'website'},
77+
{property: 'og:title', content: 'OpenMina Documentation'},
78+
{property: 'og:description', content: 'OpenMina is a Rust implementation of the Mina Protocol - a lightweight blockchain using zero-knowledge proofs.'},
79+
{property: 'og:image', content: 'https://o1-labs.github.io/openmina/img/docusaurus-social-card.jpg'},
80+
{property: 'twitter:card', content: 'summary_large_image'},
81+
{property: 'twitter:title', content: 'OpenMina Documentation'},
82+
{property: 'twitter:description', content: 'OpenMina is a Rust implementation of the Mina Protocol - a lightweight blockchain using zero-knowledge proofs.'},
83+
{property: 'twitter:image', content: 'https://o1-labs.github.io/openmina/img/docusaurus-social-card.jpg'},
84+
],
6885
navbar: {
6986
title: 'OpenMina',
7087
logo: {
@@ -146,6 +163,18 @@ const config: Config = {
146163
label: 'Discussions',
147164
href: 'https://github.com/o1-labs/openmina/discussions',
148165
},
166+
{
167+
label: 'Twitter',
168+
href: 'https://x.com/o1_labs',
169+
},
170+
{
171+
label: 'Discord',
172+
href: 'https://discord.gg/minaprotocol',
173+
},
174+
{
175+
label: 'LinkedIn',
176+
href: 'https://www.linkedin.com/company/o1labs/',
177+
},
149178
],
150179
},
151180
{
@@ -155,9 +184,17 @@ const config: Config = {
155184
label: 'Mina Protocol',
156185
href: 'https://minaprotocol.com/',
157186
},
187+
{
188+
label: 'Mina Protocol Docs',
189+
href: 'https://docs.minaprotocol.com/',
190+
},
158191
{
159192
label: 'o1Labs',
160-
href: 'https://o1labs.org/',
193+
href: 'https://www.o1labs.org/',
194+
},
195+
{
196+
label: 'o1Labs GitHub',
197+
href: 'https://github.com/o1-labs',
161198
},
162199
],
163200
},

0 commit comments

Comments
 (0)