diff --git a/docs/develop/dapps/telegram-apps/step-by-step-guide.mdx b/docs/develop/dapps/telegram-apps/step-by-step-guide.mdx index 98e58de3b2..9b7b40d560 100644 --- a/docs/develop/dapps/telegram-apps/step-by-step-guide.mdx +++ b/docs/develop/dapps/telegram-apps/step-by-step-guide.mdx @@ -1,6 +1,6 @@ -# Step-By-Step Guide +# TMA Launch Tutorial -Telegram Mini Apps are web applications that run inside the Telegram messenger. They are built using web technologies — HTML, CSS, and JavaScript. Telegram Mini Apps can be used to create DApps, games, and other types of apps that can be run inside Telegram. +Telegram Mini Apps (TMA) are web applications that run inside the Telegram messenger. They are built using web technologies — HTML, CSS, and JavaScript. Telegram Mini Apps can be used to create DApps, games, and other types of apps that can be run inside Telegram. ## Create your App diff --git a/docusaurus.config.js b/docusaurus.config.js index b69d0811e1..68b685868d 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -276,41 +276,45 @@ const config = { label: 'DApps', items: [ { - to: 'develop/dapps/apis', - label: 'Understand API Types', + to: '/develop/dapps/telegram-apps/', + label: 'TMA Development', }, { - to: 'develop/dapps/apis/sdk', - label: 'Choose an SDK', + to: 'develop/dapps/apis', + label: 'APIs', }, { - to: 'develop/dapps/defi/coins', - label: 'Native token: Toncoin', + to: 'develop/dapps/apis/sdk', + label: 'SDKs', }, { to: 'develop/dapps/asset-processing', - label: 'Payments processing', - }, - { - to: 'develop/dapps/asset-processing/jettons', - label: 'Jetton (Tokens) processing', - }, - { - to: '/develop/dapps/asset-processing/nfts', - label: 'NFT processing', - }, - { - to: '/develop/dapps/asset-processing/metadata', - label: 'TON Metadata Parsing', - }, - { + label: 'Transaction Processing', + }, +// { +// to: 'develop/dapps/asset-processing/jettons', +// label: 'Jetton (Tokens) processing', +// }, +// { +// to: '/develop/dapps/asset-processing/nfts', +// label: 'NFT processing', +// }, +// { +// to: '/develop/dapps/asset-processing/metadata', +// label: 'TON Metadata Parsing', +// }, + { + to: 'develop/dapps/defi/coins', + label: 'DeFi Development', + }, +/* { to: 'develop/dapps/defi/subscriptions', label: 'Subscriptions', }, { to: 'develop/dapps/defi/ton-payments', label: 'TON Payments', - }, + },*/ ], }, { diff --git a/sidebars.js b/sidebars.js index 447bd162bc..9c0ae2c10e 100644 --- a/sidebars.js +++ b/sidebars.js @@ -243,14 +243,26 @@ const sidebars = { type: 'category', label: 'Telegram Mini Apps', items: [ - 'develop/dapps/telegram-apps/README', - 'develop/dapps/telegram-apps/step-by-step-guide', - 'develop/dapps/telegram-apps/app-examples', + 'develop/dapps/telegram-apps/README', + 'develop/dapps/telegram-apps/grants', + { + type: 'category', + label: 'Guidelines', + items: [ 'develop/dapps/telegram-apps/testing-apps', 'develop/dapps/telegram-apps/publishing', 'develop/dapps/telegram-apps/monetization', - 'develop/dapps/telegram-apps/grants', 'develop/dapps/telegram-apps/tips-and-tricks', + ], + }, + { + type: 'category', + label: 'Tutorials & Examples', + items: [ + 'develop/dapps/telegram-apps/step-by-step-guide', + 'develop/dapps/telegram-apps/app-examples', + ], + }, ],