Enhance user interface by adding emoji to command buttons for better visibility

This commit is contained in:
Seyed Mahdi
2025-09-15 00:46:36 +03:30
parent e8704ffda0
commit 74c6bcf774
6 changed files with 16 additions and 16 deletions

View File

@ -2,7 +2,7 @@ from telebot import types
def create_main_markup():
markup = types.ReplyKeyboardMarkup(resize_keyboard=True)
markup.row('Add User', 'Show User')
markup.row('Delete User', 'Server Info')
markup.row('Backup Server')
markup.row(' Add User', '🔍 Show User')
markup.row('🗑️ Delete User', '🖥️ Server Info')
markup.row('💾 Backup Server')
return markup