From 032d51b3fdf20047f52e15bef424bb7bd0f31a3e Mon Sep 17 00:00:00 2001 From: SwiftAdviser Date: Mon, 7 Aug 2023 17:35:07 +0200 Subject: [PATCH] hotfixes --- docs/develop/dapps/ton-connect/integration.md | 2 +- docs/develop/dapps/ton-connect/mobile.mdx | 3 +++ .../dapps/ton-connect/tg-bot-integration.md | 2 +- docs/develop/dapps/ton-connect/web.mdx | 3 +++ sidebars.js | 17 +++++++++-------- 5 files changed, 17 insertions(+), 10 deletions(-) create mode 100644 docs/develop/dapps/ton-connect/mobile.mdx create mode 100644 docs/develop/dapps/ton-connect/web.mdx diff --git a/docs/develop/dapps/ton-connect/integration.md b/docs/develop/dapps/ton-connect/integration.md index c95bf922b8..c1309a8182 100644 --- a/docs/develop/dapps/ton-connect/integration.md +++ b/docs/develop/dapps/ton-connect/integration.md @@ -1,4 +1,4 @@ -# TON Connect for the Web with the JavaScript SDK +# Integration manual with the JavaScript SDK In this tutorial, we’ll create a sample web app that supports TON Connect 2.0 authentication. It will allow for signature verification to eliminate the possibility of fraudulent identity impersonation without agreement establishment between parties. diff --git a/docs/develop/dapps/ton-connect/mobile.mdx b/docs/develop/dapps/ton-connect/mobile.mdx new file mode 100644 index 0000000000..c408030dcb --- /dev/null +++ b/docs/develop/dapps/ton-connect/mobile.mdx @@ -0,0 +1,3 @@ +# TON Connect for Mobiles with the React Native + +TODO: add description with TON Connect React UI SDK \ No newline at end of file diff --git a/docs/develop/dapps/ton-connect/tg-bot-integration.md b/docs/develop/dapps/ton-connect/tg-bot-integration.md index 24129abe24..bf4642c7f9 100644 --- a/docs/develop/dapps/ton-connect/tg-bot-integration.md +++ b/docs/develop/dapps/ton-connect/tg-bot-integration.md @@ -1,4 +1,4 @@ -# TON Connect for Telegram bots +# TON Connect for Telegram Bots In this tutorial, we’ll create a sample telegram bot that supports TON Connect 2.0 authentication using Javascript TON Connect SDK. We will analyze connecting a wallet, sending a transaction, getting data about the connected wallet, and disconnecting a wallet. diff --git a/docs/develop/dapps/ton-connect/web.mdx b/docs/develop/dapps/ton-connect/web.mdx new file mode 100644 index 0000000000..eea3304121 --- /dev/null +++ b/docs/develop/dapps/ton-connect/web.mdx @@ -0,0 +1,3 @@ +# TON Connect for the Web with the JavaScript SDK + +TODO: add description with TON Connect UI + low-level SDK \ No newline at end of file diff --git a/sidebars.js b/sidebars.js index 4682c9be88..2a7ae21b91 100644 --- a/sidebars.js +++ b/sidebars.js @@ -351,18 +351,18 @@ const sidebars = { }, { type: 'doc', - id: 'develop/dapps/ton-connect/integration', - label: 'Web', + id: 'develop/dapps/ton-connect/web', + label: 'Websites' + }, + { + type: 'doc', + id: 'develop/dapps/ton-connect/mobile', + label: 'Mobiles', }, - // { - // type: 'doc', - // id: 'develop/dapps/ton-connect/integration', - // label: 'Android, iOS', - // }, { type: 'doc', id: 'develop/dapps/ton-connect/tg-bot-integration', - label: 'Telegram bots', + label: 'Telegram Bots', }, ], }, @@ -371,6 +371,7 @@ const sidebars = { label: 'Guidelines', items: [ 'develop/dapps/ton-connect/developers', + 'develop/dapps/ton-connect/integration', 'develop/dapps/ton-connect/transactions', ], },