diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index f73fe609..d569c3ca 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -7,7 +7,7 @@ assignees: '' --- -### 🐛 Bug Report for ZKsync Docs +### 🐛 Bug Report for zkSync Docs #### 📝 Description @@ -41,4 +41,4 @@ Add any other context about the problem here. If applicable, add screenshots to ``` Paste any relevant log output here. -``` \ No newline at end of file +``` diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 34c81273..61fd4b71 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -1,5 +1,5 @@ blank_issues_enabled: true contact_links: - name: zksync-developers Discussion - url: https://github.com/ZKsync-Community-Hub/zkync-developers/discussions + url: https://github.com/zkSync-Community-Hub/zkync-developers/discussions about: Please provide feedback, and ask questions here. diff --git a/README.md b/README.md index 1049e4ef..9ffdc6d9 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ -# ZK Sync Docs +# zkSync Docs -Welcome to the ZK Sync Docs repository. This project serves as the community hub for ZKsync, providing comprehensive -documentation for developers. Whether you're a beginner looking to get started with ZKsync or an experienced developer +Welcome to the zkSync Docs repository. This project serves as the community hub for zkSync, providing comprehensive +documentation for developers. Whether you're a beginner looking to get started with zkSync or an experienced developer seeking advanced guides, you'll find the resources you need here. ## Tools used @@ -62,9 +62,9 @@ bun run lint:eslint ## Contributions -We welcome contributions from the community to ZKsync Docs. +We welcome contributions from the community to zkSync Docs. If you're looking for ideas on where to start with contributing, check out the [Contribution Overview](./content/90.contributing-to-documentation/10.index.md). -To learn more on how to follow best practices when contributing to ZKsync Docs, +To learn more on how to follow best practices when contributing to zkSync Docs, refer to the [Contribution Guidelines](./content/90.contributing-to-documentation/20.contribution-guidelines.md). If you are writing new content to add to the docs, the [Documentation Styleguide](./content/90.contributing-to-documentation/30.documentation-styleguide.md) can provide additional guidance. diff --git a/app.config.ts b/app.config.ts index 2b843ab7..6b1234c6 100644 --- a/app.config.ts +++ b/app.config.ts @@ -5,7 +5,7 @@ */ export default defineAppConfig({ seo: { - siteName: 'ZKsync Docs', + siteName: 'zkSync Docs', }, header: { links: [ @@ -13,8 +13,8 @@ export default defineAppConfig({ icon: 'i-simple-icons-github', to: 'https://github.com/matter-labs/zksync-docs', target: '_blank', - 'aria-label': 'ZKsync Docs on GitHub', - title: 'ZKsync Docs on GitHub', + 'aria-label': 'zkSync Docs on GitHub', + title: 'zkSync Docs on GitHub', }, ], }, diff --git a/app.vue b/app.vue index 5ea66913..ea130f14 100644 --- a/app.vue +++ b/app.vue @@ -16,12 +16,12 @@ useHead({ { 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', + '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.', + '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.', }, { name: 'author', content: 'https://matter-labs.io' }, ], @@ -36,14 +36,14 @@ useSeoMeta({ ogSiteName: seo?.siteName, ogUrl: 'https://docs.zksync.io/', ogImage: 'https://docs.zksync.io/social-card.png', - ogImageAlt: 'ZKsync — Accelerating the mass adoption of crypto for personal sovereignty.', + ogImageAlt: 'zkSync — Accelerating the mass adoption of crypto for personal sovereignty.', 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.', twitterImage: 'https://docs.zksync.io/social-card.png', twitterCard: 'summary_large_image', twitterSite: '@zksync', twitterCreator: '@the_matter_labs', - twitterImageAlt: 'ZKsync — Accelerating the mass adoption of crypto for personal sovereignty.', + twitterImageAlt: 'zkSync — Accelerating the mass adoption of crypto for personal sovereignty.', }); provide('navigation', navigation); @@ -65,9 +65,9 @@ const links = computed(() => { active: route.path.startsWith('/zk-stack'), }, { - label: 'External Node', - to: '/external-node', - active: route.path.startsWith('/external-node'), + label: 'zkSync Node', + to: '/zksync-node', + active: route.path.startsWith('/zksync-node'), }, { label: 'Ecosystem', diff --git a/components/HeaderComponent.vue b/components/HeaderComponent.vue index 992264b9..2ccd54c8 100644 --- a/components/HeaderComponent.vue +++ b/components/HeaderComponent.vue @@ -18,7 +18,7 @@ const { header } = useAppConfig();