Skip to content

Commit aaca253

Browse files
authored
Merge pull request #13370 from codingmickey/add_node_guardian
Add NodeGuardians in the Interactive games tutorial list
2 parents 396c74a + 5116ed5 commit aaca253

File tree

3 files changed

+19
-3
lines changed

3 files changed

+19
-3
lines changed
44 KB
Loading

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
"page-learning-tools-browse-docs": "Browse docs",
77
"page-learning-tools-capture-the-ether-description": "Capture the Ether is a game in which you hack Ethereum smart contracts to learn about security.",
88
"page-learning-tools-capture-the-ether-logo-alt": "Capture the Ether logo",
9+
"page-learning-tools-node-guardians-description": "Node Guardians is a gamified educational platform that immerses web3 developers in fantasy-themed quests to master Solidity, Cairo, Noir, and Huff programming.",
10+
"page-learning-tools-node-guardians-logo-alt": "Node Guardians logo",
911
"page-learning-tools-chainshot-description": "Remote, instructor-led Ethereum developer bootcamp and additional courses.",
1012
"page-learning-tools-chainshot-logo-alt": "ChainShot logo",
1113
"page-learning-tools-coding": "Learn by coding",

src/pages/developers/learning-tools.tsx

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ import DappWorldImage from "@/public/images/dev-tools/dapp-world.png"
3535
import EthDotBuildImage from "@/public/images/dev-tools/eth-dot-build.png"
3636
import MetaschoolImage from "@/public/images/dev-tools/metaschool.png"
3737
import NFTSchoolImage from "@/public/images/dev-tools/nftschool.png"
38+
import NodeGuardiansImage from "@/public/images/dev-tools/node-guardians.jpg"
3839
import EthernautImage from "@/public/images/dev-tools/oz.png"
3940
import PlatziImage from "@/public/images/dev-tools/platzi.png"
4041
import PointerImage from "@/public/images/dev-tools/pointer.png"
@@ -225,18 +226,18 @@ const LearningToolsPage = () => {
225226
subjects: ["Solidity"],
226227
},
227228
{
228-
name: 'DApp World',
229+
name: "DApp World",
229230
description: t(
230231
"page-developers-learning-tools:page-learning-tools-dapp-world-description"
231232
),
232-
url: 'https://dapp-world.com',
233+
url: "https://dapp-world.com",
233234
image: DappWorldImage,
234235
alt: t(
235236
"page-developers-learning-tools:page-learning-tools-dapp-world-logo-alt"
236237
),
237238
background: "#e5e7eb",
238239
subjects: ["Solidity", "web3"],
239-
}
240+
},
240241
])
241242

242243
const games: Array<LearningTool> = [
@@ -279,6 +280,19 @@ const LearningToolsPage = () => {
279280
background: "#1b9aaa",
280281
subjects: ["Solidity"],
281282
},
283+
{
284+
name: "Node Guardians",
285+
description: t(
286+
"page-developers-learning-tools:page-learning-tools-node-guardians-description"
287+
),
288+
url: "https://nodeguardians.io/",
289+
image: NodeGuardiansImage,
290+
alt: t(
291+
"page-developers-learning-tools:page-learning-tools-node-guardians-logo-alt"
292+
),
293+
background: "#000",
294+
subjects: ["Solidity", "web3"],
295+
},
282296
]
283297

284298
const bootcamps: Array<LearningTool> = [

0 commit comments

Comments
 (0)