Skip to content

Commit 9e58167

Browse files
authored
Merge pull request #13267 from tomasgrusz/dappworld
feat: add DAppWorld to learning tools
2 parents fe6995b + 667b719 commit 9e58167

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
@@ -31,6 +31,7 @@ import ChainIDEImage from "@/public/images/dev-tools/chainIDE.png"
3131
import ChainShotImage from "@/public/images/dev-tools/chainshot.png"
3232
import ConsensysImage from "@/public/images/dev-tools/consensys.png"
3333
import CryptoZombieImage from "@/public/images/dev-tools/crypto-zombie.png"
34+
import DappWorldImage from "@/public/images/dev-tools/dapp-world.png"
3435
import EthDotBuildImage from "@/public/images/dev-tools/eth-dot-build.png"
3536
import MetaschoolImage from "@/public/images/dev-tools/metaschool.png"
3637
import NFTSchoolImage from "@/public/images/dev-tools/nftschool.png"
@@ -223,6 +224,19 @@ const LearningToolsPage = () => {
223224
background: "#000000",
224225
subjects: ["Solidity"],
225226
},
227+
{
228+
name: 'DApp World',
229+
description: t(
230+
"page-developers-learning-tools:page-learning-tools-dapp-world-description"
231+
),
232+
url: 'https://dapp-world.com',
233+
image: DappWorldImage,
234+
alt: t(
235+
"page-developers-learning-tools:page-learning-tools-dapp-world-logo-alt"
236+
),
237+
background: "#e5e7eb",
238+
subjects: ["Solidity", "web3"],
239+
}
226240
])
227241

228242
const games: Array<LearningTool> = [

0 commit comments

Comments
 (0)