From 227b8f86ff4a1be3330692d72a61bb888b0c3ab8 Mon Sep 17 00:00:00 2001 From: Sabrina Ferguson Date: Tue, 21 May 2024 14:44:49 -0400 Subject: [PATCH 1/3] chore: cleanup --- content/sdk/_dir.yml | 2 +- cspell-config/cspell-zksync.txt | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/content/sdk/_dir.yml b/content/sdk/_dir.yml index 9a02c4c5..1f3319fa 100644 --- a/content/sdk/_dir.yml +++ b/content/sdk/_dir.yml @@ -1 +1 @@ -layout: sdk +title: SDK diff --git a/cspell-config/cspell-zksync.txt b/cspell-config/cspell-zksync.txt index 2a3b4ec7..5b988b43 100644 --- a/cspell-config/cspell-zksync.txt +++ b/cspell-config/cspell-zksync.txt @@ -1,6 +1,7 @@ // zkSync-related words boojum -MatterLabs +!MatterLabs +Matter Labs Zeek Zeeks zkcast From 6c1819345355ce1b24607250f0ae128dfda986d1 Mon Sep 17 00:00:00 2001 From: Sabrina Ferguson Date: Tue, 21 May 2024 15:00:40 -0400 Subject: [PATCH 2/3] chore: cleanup --- app.vue | 34 ++++++++++++++----------------- components/OgImage/OgImageSDK.vue | 29 -------------------------- pages/sdk/[...slug].vue | 1 + 3 files changed, 16 insertions(+), 48 deletions(-) delete mode 100644 components/OgImage/OgImageSDK.vue diff --git a/app.vue b/app.vue index 95712fa6..50c89f23 100644 --- a/app.vue +++ b/app.vue @@ -5,20 +5,7 @@ const { data: navigation } = await useAsyncData('navigation', () => fetchContent provide('navigation', navigation); useHead({ - meta: [ - { name: 'viewport', content: 'width=device-width, initial-scale=1' }, - { - name: 'keywords', - content: - 'Documentation, Developers, Era, zkSync, ZK Stack, Matter Labs, rollup, ZK rollup, zero confirmation, ZKP, zero-knowledge proofs, Ethereum, crypto, blockchain, permissionless, L2, secure payments, scalable', - }, - { - name: 'description', - content: - 'zkSync Docs bring you all information you need about our protocol, APIs, SDKs, ZK Stack, and hyperchains. Start with our guides and tutorials, or go deep into our architecture and protocol specification.', - }, - { name: 'author', content: 'https://matter-labs.io' }, - ], + meta: [{ name: 'viewport', content: 'width=device-width, initial-scale=1' }], htmlAttrs: { lang: 'en', }, @@ -28,16 +15,25 @@ useSeoMeta({ titleTemplate: `%s - ${seo?.siteName}`, ogSiteName: seo?.siteName, ogUrl: 'https://docs.zksync.io/', - ogImageAlt: 'zkSync — Accelerating the mass adoption of crypto for personal sovereignty.', + ogImageAlt: 'Hyperscaling Ethereum with ZK tech.', ogDescription: - 'zkSync Docs bring you all information you need about our protocol, APIs, SDKs, ZK Stack, and hyperchains. Start with our guides and tutorials, or go deep into our architecture and protocol specification.', + 'zkSync Docs bring you all information you need about our protocol, APIs, SDKs, ZK Stack, and ZK Chains. Start with our guides and tutorials, or go deep into our architecture and protocol specification.', + description: + 'zkSync Docs bring you all information you need about our protocol, APIs, SDKs, ZK Stack, and ZK Chains. Start with our guides and tutorials, or go deep into our architecture and protocol specification.', + twitterDescription: + 'zkSync Docs bring you all information you need about our protocol, APIs, SDKs, ZK Stack, and ZK Chains. Start with our guides and tutorials, or go deep into our architecture and protocol specification.', + twitterTitle: `%s`, twitterCard: 'summary_large_image', twitterSite: '@zksync', - twitterCreator: '@the_matter_labs', - twitterImageAlt: 'zkSync — Accelerating the mass adoption of crypto for personal sovereignty.', + twitterCreator: '@zkSyncDevs', + twitterImageAlt: 'Hyperscaling Ethereum with ZK tech.', }); -defineOgImageComponent('OgImageZK'); +defineOgImage({ + component: 'OgImageZK', + title: seo?.siteName, + description: 'Access detailed guides, references and resources that will help you build with zkSync Era.', +});