Skip to content

Commit

Permalink
feat(docs): add github discussions links (#436)
Browse files Browse the repository at this point in the history
  • Loading branch information
d1onys1us committed Dec 15, 2022
1 parent 2269cc5 commit 8bf5632
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 4 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,12 @@

Most documentation can be found on the website, at [taiko.xyz](https://taiko.xyz). There should also be a README in each package, as well as comments in the source code.

## Questions and discussions

Ask questions and start discussions for new ideas under [GitHub Discussions](https://github.com/taikoxyz/taiko-mono/discussions).

If you have a specific request/report, you can [open an issue](https://github.com/taikoxyz/taiko-mono/issues/new/choose).

## Project structure

<pre>
Expand Down
4 changes: 4 additions & 0 deletions packages/website/docs/intro/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,7 @@ Here are the best places to learn about Taiko.
- [GitHub](https://github.com/taikoxyz/)
- [Reddit](https://www.reddit.com/r/taiko_xyz/)
- [Twitter](https://twitter.com/taikoxyz)

### Ask questions and start discussions

You can ask questions and start discussions on our [GitHub Discussions](https://github.com/taikoxyz/taiko-mono/discussions).
5 changes: 5 additions & 0 deletions packages/website/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,11 @@ const config = {
label: "Blog",
position: "left",
},
{
href: "https://github.com/taikoxyz/taiko-mono/discussions",
label: "Discussions",
position: "left",
},
{
to: "talks",
label: "Talks",
Expand Down
4 changes: 2 additions & 2 deletions packages/website/faq/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ Here are the official links to our social media and public documentation:
- Reddit: https://www.reddit.com/r/taiko_xyz/
- Blog: https://mirror.xyz/labs.taiko.eth
- GitHub: https://github.com/taikoxyz/
- Discussions: https://github.com/taikoxyz/taiko-mono/discussions
- Whitepaper: https://taikoxyz.github.io/taiko-mono/taiko-whitepaper.pdf

## What is Layer 2 (L2)?
Expand Down Expand Up @@ -64,8 +65,7 @@ There are 2 types of zero-knowledge proofs: ZK-SNARKs and ZK-STARKs. Taiko uses

## What does "Taiko" mean?

It comes from an old Chinese saying 一鼓作气 (Yīgǔzuòqì) meaning "Do it all at once".
It comes from an old Chinese saying 一鼓作气 (Yīgǔzuòqì) meaning "Do it all at once".

The first drum beat cheers people up, the second weakens them, and the third devitalizes them. The first is the most powerful.
Taiko is the "drum".

2 changes: 1 addition & 1 deletion packages/website/src/components/BlogSection/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export default function BlogSection(): JSX.Element {
/>
</a>
</div>
<div className="flex flex-1 flex-col justify-between bg-white p-6 dark:bg-neutral-700">
<div className="flex flex-1 flex-col justify-between bg-white p-6 dark:bg-neutral-800">
<div className="flex-1">
<div className="text-sm font-medium">
<a>{post.category.name}</a>
Expand Down
2 changes: 1 addition & 1 deletion packages/website/src/components/Features/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export default function Features() {
<div className="grid grid-cols-1 gap-12 sm:grid-cols-1 lg:grid-cols-3">
{features.map((feature) => (
<div key={feature.name} className="pt-6">
<div className="flow-root rounded-lg bg-neutral-50 px-6 pb-8 dark:bg-neutral-700">
<div className="flow-root rounded-lg bg-neutral-50 px-6 pb-8 dark:bg-neutral-800">
<div className="-mt-6">
<div>
<span className="inline-flex items-center justify-center rounded-xl bg-neutral-600 p-3 shadow-lg dark:bg-neutral-500">
Expand Down

0 comments on commit 8bf5632

Please sign in to comment.