Skip to content

Commit af476b9

Browse files
committed
feat: add DAppWorld to learning tools
1 parent 104e6ae commit af476b9

File tree

3 files changed

+16
-0
lines changed

3 files changed

+16
-0
lines changed
22.1 KB
Loading

src/intl/en/page-developers-learning-tools.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
"page-learning-tools-buildspace-logo-alt": "_buildspace logo",
1717
"page-learning-tools-cryptozombies-description": "Learn Solidity building your own Zombie game.",
1818
"page-learning-tools-cryptozombies-logo-alt": "CryptoZombies logo",
19+
"page-learning-tools-dapp-world-description": "A blockchain upskilling ecosystem, including courses, quizzes, hands-on practice, and weekly contests.",
20+
"page-learning-tools-dapp-world-logo-alt": "Dapp World logo",
1921
"page-learning-tools-documentation": "Learn with documentation",
2022
"page-learning-tools-documentation-desc": "Want to learn more? Go to our documentation to find the explanations you need.",
2123
"page-learning-tools-eth-dot-build-description": "An educational sandbox for web3, including drag-and-drop programming and open-source building blocks.",

src/pages/developers/learning-tools.tsx

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ import ChainIDEImage from "@/public/images/dev-tools/chainIDE.png"
3030
import ChainShotImage from "@/public/images/dev-tools/chainshot.png"
3131
import ConsensysImage from "@/public/images/dev-tools/consensys.png"
3232
import CryptoZombieImage from "@/public/images/dev-tools/crypto-zombie.png"
33+
import DappWorldImage from "@/public/images/dev-tools/dapp-world.png"
3334
import EthDotBuildImage from "@/public/images/dev-tools/eth-dot-build.png"
3435
import MetaschoolImage from "@/public/images/dev-tools/metaschool.png"
3536
import NFTSchoolImage from "@/public/images/dev-tools/nftschool.png"
@@ -209,6 +210,19 @@ const LearningToolsPage = () => {
209210
background: "#0f1524",
210211
subjects: ["Solidity", "Vyper", "web3"],
211212
},
213+
{
214+
name: 'DApp World',
215+
description: t(
216+
"page-developers-learning-tools:page-learning-tools-dapp-world-description"
217+
),
218+
url: 'https://dapp-world.com',
219+
image: DappWorldImage,
220+
alt: t(
221+
"page-developers-learning-tools:page-learning-tools-dapp-world-logo-alt"
222+
),
223+
background: "#e5e7eb",
224+
subjects: ["Solidity", "web3"],
225+
}
212226
])
213227

214228
const games: Array<LearningTool> = [

0 commit comments

Comments
 (0)