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.', +});