Skip to content

Commit

Permalink
chore: cleanup (#18)
Browse files Browse the repository at this point in the history
* chore: cleanup

* chore: cleanup

* chore: fix syntax
  • Loading branch information
itsacoyote authored and Ngozi-Txfusion committed May 30, 2024
1 parent 619d146 commit 1710105
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 51 deletions.
34 changes: 15 additions & 19 deletions app.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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',
},
Expand All @@ -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.',
});
</script>

<template>
Expand Down
29 changes: 0 additions & 29 deletions components/OgImage/OgImageSDK.vue

This file was deleted.

2 changes: 1 addition & 1 deletion content/sdk/10.js/00.ethers/v6/07.utils.md
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ const NONCE_HOLDER_ADDRESS = "0x0000000000000000000000000000000000008003";
The operator is NOT required to use the actual value and can use any value up to that signed by the user.
::

```tx
```txt
const DEFAULT_GAS_PER_PUBDATA_LIMIT = 50_000;
```

Expand Down
2 changes: 1 addition & 1 deletion content/sdk/_dir.yml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
layout: sdk
title: SDK
3 changes: 2 additions & 1 deletion cspell-config/cspell-zksync.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// zkSync-related words
boojum
MatterLabs
!MatterLabs
Matter Labs
Zeek
Zeeks
zkcast
Expand Down
1 change: 1 addition & 0 deletions pages/sdk/[...slug].vue
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ useSeoMeta({
ogTitle: `${page.value.title} - ${seo?.siteName}`,
description: page.value.description,
ogDescription: page.value.description,
twitterDescription: page.value.description,
});
defineOgImage({
Expand Down

0 comments on commit 1710105

Please sign in to comment.