Skip to content

Commit

Permalink
Merge pull request #13370 from codingmickey/add_node_guardian
Browse files Browse the repository at this point in the history
Add NodeGuardians in the Interactive games tutorial list
  • Loading branch information
wackerow authored Jul 14, 2024
2 parents 396c74a + 5116ed5 commit aaca253
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 3 deletions.
Binary file added public/images/dev-tools/node-guardians.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions src/intl/en/page-developers-learning-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
"page-learning-tools-browse-docs": "Browse docs",
"page-learning-tools-capture-the-ether-description": "Capture the Ether is a game in which you hack Ethereum smart contracts to learn about security.",
"page-learning-tools-capture-the-ether-logo-alt": "Capture the Ether logo",
"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.",
"page-learning-tools-node-guardians-logo-alt": "Node Guardians logo",
"page-learning-tools-chainshot-description": "Remote, instructor-led Ethereum developer bootcamp and additional courses.",
"page-learning-tools-chainshot-logo-alt": "ChainShot logo",
"page-learning-tools-coding": "Learn by coding",
Expand Down
20 changes: 17 additions & 3 deletions src/pages/developers/learning-tools.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ import DappWorldImage from "@/public/images/dev-tools/dapp-world.png"
import EthDotBuildImage from "@/public/images/dev-tools/eth-dot-build.png"
import MetaschoolImage from "@/public/images/dev-tools/metaschool.png"
import NFTSchoolImage from "@/public/images/dev-tools/nftschool.png"
import NodeGuardiansImage from "@/public/images/dev-tools/node-guardians.jpg"
import EthernautImage from "@/public/images/dev-tools/oz.png"
import PlatziImage from "@/public/images/dev-tools/platzi.png"
import PointerImage from "@/public/images/dev-tools/pointer.png"
Expand Down Expand Up @@ -225,18 +226,18 @@ const LearningToolsPage = () => {
subjects: ["Solidity"],
},
{
name: 'DApp World',
name: "DApp World",
description: t(
"page-developers-learning-tools:page-learning-tools-dapp-world-description"
),
url: 'https://dapp-world.com',
url: "https://dapp-world.com",
image: DappWorldImage,
alt: t(
"page-developers-learning-tools:page-learning-tools-dapp-world-logo-alt"
),
background: "#e5e7eb",
subjects: ["Solidity", "web3"],
}
},
])

const games: Array<LearningTool> = [
Expand Down Expand Up @@ -279,6 +280,19 @@ const LearningToolsPage = () => {
background: "#1b9aaa",
subjects: ["Solidity"],
},
{
name: "Node Guardians",
description: t(
"page-developers-learning-tools:page-learning-tools-node-guardians-description"
),
url: "https://nodeguardians.io/",
image: NodeGuardiansImage,
alt: t(
"page-developers-learning-tools:page-learning-tools-node-guardians-logo-alt"
),
background: "#000",
subjects: ["Solidity", "web3"],
},
]

const bootcamps: Array<LearningTool> = [
Expand Down

0 comments on commit aaca253

Please sign in to comment.