Skip to content

Commit bf7d08f

Browse files
authored
Payments demo (#439)
* added payments tutorial * created what to build directory * added the github link * typo * added 3 what-to-build tutorials
1 parent 7f9831e commit bf7d08f

File tree

10 files changed

+1071
-0
lines changed

10 files changed

+1071
-0
lines changed

public/locales/en/translation.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,12 @@
113113
"canvasBadge": "Canvas & Badge Integration",
114114
"transactionJourney": "Checking Transaction Journey"
115115
},
116+
"whatToBuild": {
117+
"whatToBuild": "What to Build",
118+
"stablecoinPaymentsTutorial": "Stablecoin Payments Tutorial",
119+
"solidityCookbook": "Solidity Cookbook",
120+
"privacyDappsWithZk": "Privacy dApps with ZK"
121+
},
116122
"technology": {
117123
"introduction": "Introduction",
118124
"principles": "Principles",

public/locales/es/translation.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,12 @@
109109
"sepoliaRollupExplorer": "Explorador de Rollup",
110110
"sepoliaBlockExplorer": "Explorador de bloques Scrollscan"
111111
},
112+
"whatToBuild": {
113+
"whatToBuild": "Qué construir",
114+
"stablecoinPaymentsTutorial": "Pagos con Stablecoins",
115+
"solidityCookbook": "Recetario de Solidity",
116+
"privacyDappsWithZk": "Dapps Privadas con ZK"
117+
},
112118
"technology": {
113119
"introduction": "Introducción",
114120
"principles": "Principios",
Loading
Loading
Loading
Loading

src/config/sidebar.ts

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,23 @@ export const getSidebar = () => {
184184
// },
185185
],
186186
},
187+
{
188+
section: t("sidebar.whatToBuild.whatToBuild"),
189+
contents: [
190+
{
191+
title: t("sidebar.whatToBuild.stablecoinPaymentsTutorial"),
192+
url: formatUrl("developers/what-to-build/stablecoin-payments-tutorial"),
193+
},
194+
{
195+
title: t("sidebar.whatToBuild.solidityCookbook"),
196+
url: formatUrl("developers/what-to-build/solidity-cookbook"),
197+
},
198+
{
199+
title: t("sidebar.whatToBuild.privacyDappsWithZk"),
200+
url: formatUrl("developers/what-to-build/privacy-dapps-with-zk"),
201+
},
202+
],
203+
},
187204
{
188205
section: t("sidebar.developers.mainnetResources"),
189206
contents: [

0 commit comments

Comments
 (0)