Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add NodeGuardians in the Interactive games tutorial list #13370

Merged
merged 1 commit into from
Jul 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading