-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
20 changed files
with
524 additions
and
160 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<template> | ||
<a | ||
:href="href" | ||
:target="target" | ||
:rel="rel" | ||
class="inline" | ||
> | ||
{{ text }} | ||
<UIcon | ||
name="i-heroicons-arrow-top-right-on-square-16-solid" | ||
class="-mb-0.5" | ||
/> | ||
</a> | ||
</template> | ||
|
||
<script setup lang="ts"> | ||
export interface Props { | ||
text: string; | ||
href: string; | ||
target?: string; | ||
rel?: string; | ||
} | ||
withDefaults(defineProps<Props>(), { | ||
text: '', | ||
href: '', | ||
target: '_blank', | ||
rel: 'noopener noreferrer', | ||
}); | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
--- | ||
title: Overview | ||
description: Explore how to contribute to zkSync's open-source projects and community. | ||
--- | ||
|
||
zkSync is an open-source project. We champion community-driven development, which means you, | ||
from any corner of the world, can contribute to shaping zkSync's future. | ||
|
||
This section outlines how you can enhance our documentation, engage with the zkSync community, | ||
and contribute to our other open-source projects. | ||
|
||
### Edit Existing Content | ||
|
||
We welcome your edits to any content on the zkSync Docs website. To contribute changes, | ||
you will need a [GitHub account](https://github.com/signup). | ||
|
||
For minor edits, use the "Edit this page" link found on pages within the Table of Contents on the right side of the page. | ||
|
||
To suggest changes without directly editing, submit a GitHub issue via the "Share feedback" link, | ||
also located in the Table of Contents sidebar. | ||
|
||
The best way to contribute is by [forking the zkSync-docs repo](https://github.com/matter-labs/zksync-docs/fork), | ||
making changes in a branch, and then submitting a PR. | ||
To start, follow the README in the project repo and read the [Contribution Guidelines](/contributing-to-documentation/contribution-guidelines) | ||
to familiarize yourself with the project structure and the documentation editing workflow. | ||
|
||
### Write New Content | ||
|
||
For the best experience in creating new content, [fork our zkSync-docs project](https://github.com/matter-labs/zksync-docs/fork) | ||
and set up a local project on your machine. If you are unfamiliar with the forking workflow, you can learn more about it | ||
from [GitHub's articles on Forking](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/working-with-forks/about-forks). | ||
|
||
As you write new content, please adhere to our | ||
[Contribution Guidelines](/contributing-to-documentation/contribution-guidelines) | ||
and consult the [Documentation Style Guide](/contributing-to-documentation/documentation-styleguide) | ||
to maintain consistency across our documentation. | ||
|
||
### Submit a Community Tutorial or Guide | ||
|
||
The zkSync-docs project primarily focuses on documentation that helps readers understand zkSync and develop in the ecosystem. | ||
If your guide or tutorial includes using another tool or service with zkSync, consider submitting it to our Community content. | ||
These documents, while adjacent to our technical documentation, are hosted in a separate project repo on GitHub. | ||
|
||
### Showcase Your Projects Built on zkSync | ||
|
||
We're excited to see new projects developed by our community within the zkSync ecosystem! | ||
If you've released a project recently, we'd love to hear about it. | ||
Our [zkSync Community Hub Discussions](https://github.com/zkSync-Community-Hub/zksync-developers) | ||
has a section where you can | ||
[submit your project](https://github.com/zkSync-Community-Hub/zksync-developers/discussions/new?category=show-and-tell) | ||
for the community to discover. |
Oops, something went wrong.