Skip to content

Commit

Permalink
Refactor/reorganise links (#228)
Browse files Browse the repository at this point in the history
* refactor: reorganise links

* link to portkey wallet

* fix: oracle link

* revert
  • Loading branch information
yongenaelf authored Sep 9, 2024
1 parent d66126f commit 8bfdd13
Show file tree
Hide file tree
Showing 6 changed files with 49 additions and 27 deletions.
23 changes: 6 additions & 17 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,16 +58,12 @@ aelf is a high-performance, cloud-native, layer-1 blockchain with Mainnet nodes
## 🛠️ Tools

- [Playground](/tools/aelf-playground/) - Play with aelf in your browser
- [Chain SDK](/tools/chain-sdk/) - Develop blockchain specific applications using ChainSDK
- [aelf-deploy](/tools/aelf-deploy/) - Deploy your smart contract using this CLI
- [aelf CLI](/tools/aelf-cli/) - Execute blockchain operations via CLI
- [Smart Contract Templates](/tools/smart-contract-templates/) - Templates to quickly build your smart contract
- [Wallet](https://portkey.finance/) - Integrate your dApp with Portkey wallet
- [Faucet](/tools/faucet/) - Test your dApp with aelf test tokens
- [Design](/tools/design/) - Explore aelf design library
- [Contract SDK](/tools/contract-sdk/) - C# SDKs
- [Smart Contract API](/tools/smart-contract-api/) - Access smart contract functionalities using API
- [Web API](/tools/web-api/) - Interact with the aelf blockchain through the web
- [Setup Local Environment](/tools/setup-local-environment/) - Node operator and developer setup guides
- [Oracle](/tools/oracle/) - Transfer tamper-proof data from off-chain to on-chain
- [Indexer](https://www.aefinder.io/) - Query blockchain data from a database
- [aelf SDK](/tools/chain-sdk/) - Develop blockchain specific applications using aelf SDK
- [aelf CLI](/tools/aelf-cli/) - Execute blockchain operations via CLI

</article>

Expand All @@ -76,15 +72,8 @@ aelf is a high-performance, cloud-native, layer-1 blockchain with Mainnet nodes
## 🔖 Resources

- [Whitepaper 2.0](/resources/whitepaper-2/) - Featuring AI + Blockchain
- [Whitepaper 1.0](/resources/whitepaper/) - The original aelf Whitepaper
- [Tokenomics](/resources/tokenomics/) - Economic and Governance
- [Integration Guide](/resources/integration-guide/) - Learn how to integrate with other tools and DApps
- [Wallet and Block Explorer](/resources/wallet-and-block-explorer/) - Manage your assets and explore aelf's blockchain data
- [AetherLink](/resources/aetherLink/) - Transfer tamper-proof data from off-chain to on-chain
- [Browser Extension](/resources/browser-extension/) - Explore Portkey wallet and other extensions
- [DevOps](/resources/devops/) - Tools to build and deploy efficiently
- [Protobuf Extension](/resources/protobuf-extension/) - An open-source gRPC
- [Contribution Guide](/resources/contribution/) - Contribute to aelf
- [Other](/resources/) - Other resources

</article>

Expand Down
2 changes: 1 addition & 1 deletion docs/tools/aelf-playground/index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
sidebar_position: 1
title: aelf Playground
title: Playground
description: Play with aelf in your browser.
---

Expand Down
6 changes: 3 additions & 3 deletions docs/tools/chain-sdk/_category_.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"position": 2,
"label": "Chain SDK",
"position": 6,
"label": "aelf SDK",
"collapsible": true,
"collapsed": true,
"link": {
"type": "generated-index",
"title": "Chain SDK",
"title": "aelf SDK",
"slug": "tools/chain-sdk"
},
"customProps": {
Expand Down
6 changes: 3 additions & 3 deletions docs/tools/faucet/index.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
sidebar_position: 6
title: aelf Testnet Faucet
description: Get your free test aelf tokens.
sidebar_position: 3
title: Faucet
description: Test your dApp with aelf test tokens
---

import Tabs from '@theme/Tabs';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
sidebar_position: 6
title: AetherLink
sidebar_position: 4
title: Oracle
description: Transfer tamper-proof data from off-chain to on-chain
---

Expand Down
35 changes: 34 additions & 1 deletion sidebars.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,40 @@ const sidebars: SidebarsConfig = {
type: "generated-index",
slug: "tools",
},
items: [{ type: "autogenerated", dirName: "tools" }],
items: [
{ type: "doc", id: "tools/aelf-playground/index" },
{ type: "link", label: "Wallet", href: "https://portkey.finance/", description: "Integrate your dApp with Portkey wallet" },
{ type: "doc", id: "tools/faucet/index" },
{ type: "doc", id: "tools/oracle/index" },
{
type: "link",
label: "Indexer",
href: "https://aefinder.io/",
description: "Query blockchain data from a database",
},
{
type: "category",
label: "aelf SDK",
link: { type: "generated-index", slug: "tools/chain-sdk" },
customProps: {
description: "Command-line interface for aelf",
},
items: [{ type: "autogenerated", dirName: "tools/chain-sdk" }],
},
{
type: "category",
label: "aelf CLI",
link: {
type: "generated-index",
title: "aelf CLI",
slug: "tools/aelf-cli",
},
customProps: {
description: "Command-line interface for aelf",
},
items: [{ type: "autogenerated", dirName: "tools/aelf-cli" }],
},
],
},
],
resources: [
Expand Down

0 comments on commit 8bfdd13

Please sign in to comment.