Skip to content

Commit

Permalink
feat(website): use cards in guides
Browse files Browse the repository at this point in the history
  • Loading branch information
2manslkh committed Aug 11, 2023
1 parent 38f7136 commit 9eaff23
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 17 deletions.
35 changes: 21 additions & 14 deletions packages/website/pages/docs/guides.mdx
Original file line number Diff line number Diff line change
@@ -1,21 +1,28 @@
import { Cards, Card } from "nextra/components";

# Guides

Check out our guides below. You can leave feedback [here](https://docs.google.com/forms/d/1Vn10tqZW0bPvNUItzeek9u8kh7YkQZOGorMb3LuJVVA) and ask any questions on the [Taiko Discord](https://discord.gg/taikoxyz)!

# Build on Taiko
## Build on Taiko


- πŸ’° [Setup your wallet](/docs/guides/build-on-taiko/setup-your-wallet)
- 🎁 [Receive tokens](/docs/guides/build-on-taiko/receive-tokens)
- πŸŒ‰ [Bridge tokens](/docs/guides/build-on-taiko/bridge-tokens)
- πŸ”„ [Swap tokens](/docs/guides/build-on-taiko/swap-tokens)
- πŸš€ [Deploy a contract](/docs/guides/build-on-taiko/deploy-a-contract)
- πŸ“œ [Verify a contract](/docs/guides/build-on-taiko/verify-a-contract)
- πŸ› οΈ [Build a dapp](/docs/guides/build-on-taiko/build-a-dapp)
<Cards>
<Card title="πŸ’» Setup your wallet" href="/docs/guides/build-on-taiko/setup-your-wallet" />
<Card title="🎈 Receive tokens" href="/docs/guides/build-on-taiko/receive-tokens" />
<Card title="πŸŒ‰ Bridge tokens" href="/docs/guides/build-on-taiko/bridge-tokens" />
<Card title="πŸ”„ Swap tokens" href="/docs/guides/build-on-taiko/swap-tokens" />
<Card title="πŸš€ Deploy a contract" href="/docs/guides/build-on-taiko/deploy-a-contract" />
<Card title="πŸ“œ Verify a contract" href="/docs/guides/build-on-taiko/verify-a-contract" />
<Card title="πŸ› οΈ Build a dapp" href="/docs/guides/build-on-taiko/build-a-dapp" />
</Cards>

# Run a node
## Run a node

- ♦️ [Run a Sepolia node](/docs/guides/run-a-node/run-a-sepolia-node)
- πŸ₯ [Run a Taiko node](/docs/guides/run-a-node/run-a-taiko-node)
- βœ‰οΈ [Enable a proposer](/docs/guides/run-a-node/enable-a-proposer)
- πŸ”Ž [Enable a prover](/docs/guides/run-a-node/enable-a-prover)
- πŸ›„ [Claim prover rewards](/docs/guides/run-a-node/claim-prover-ttko)
<Cards>
<Card title="πŸ”· Run a Sepolia node" href="/docs/guides/run-a-node/run-a-sepolia-node"/>
<Card title="πŸ₯ Run a Taiko node" href="/docs/guides/run-a-node/run-a-taiko-node"/>
<Card title="πŸ“€ Enable a proposer" href="/docs/guides/run-a-node/enable-a-proposer"/>
<Card title="πŸ”Ž Enable a prover" href="/docs/guides/run-a-node/enable-a-prover"/>
<Card title="πŸ›„ Claim prover rewards" href="/docs/guides/run-a-node/claim-prover-rewards"/>
</Cards>
6 changes: 3 additions & 3 deletions packages/website/pages/docs/guides/run-a-node/_meta.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"run-a-sepolia-node": {
"title": "♦️ Run a Sepolia node"
"title": "πŸ”· Run a Sepolia node"
},
"run-a-taiko-node": {
"title": "πŸ₯ Run a Taiko node"
},
"enable-a-proposer": {
"title": "βœ‰οΈ Enable a proposer"
"title": "πŸ“€ Enable a proposer"
},
"enable-a-prover": {
"title": "πŸ”Ž Enable a prover"
Expand All @@ -17,4 +17,4 @@
"withdraw-ttko-balance": {
"title": "πŸ›„ Withdraw TTKO/TTKOe balance"
}
}
}

0 comments on commit 9eaff23

Please sign in to comment.