ShahriarAbidbd/SmartifyXBotPublic · Bot Template

Do Tasks Smartly with SmartifyX 😎

Utilitydownloaderyoutubeinstagramfacebookspoilercontent-protection
ProfileTelegram
25 commands2 envUpdated 1d agoCreated Jul 28, 2026
Back to folder

commands/menu_about.js

javascript · 39 lines

Raw
1/**#command2name: menu_about3answer: 4keyboard: 5parse_mode: markdown6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12Api.editMessageText({13  text: `*Name:* SmartifyX 🛠️ 14*Version:* 1.0 (Beta)15 16*Development Team:*17- *Creator:* [Shahriar Abid](http://t.me/ShahriarAbidbd)18 19*Technical Stack:*20- *Language:* Javascript21- *Hosting:* TeleBotHost22 23</> [Source Code](https://www.teledevs.me/ShahriarAbidbd/b/656754332487022)24 25Inspired from *Util Hub ⚙️*`,26  chat_id: chat.id,27  message_id: request.message.message_id,28  reply_markup: {29    inline_keyboard: [30      [{31        text: "Back",32        callback_data: "menu_home",33        style: "danger"34      }]35    ]36  },37  parse_mode: "markdown",38  disable_web_page_preview: true39})