Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(website): use cards in guides #14378

Merged
merged 17 commits into from
Aug 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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

<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>

- 💰 [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)
## Run a node

# Run a node
<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>

- ♦️ [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)
4 changes: 2 additions & 2 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 Down