from aiogram.types import ReplyKeyboardMarkup, KeyboardButton menu = ReplyKeyboardMarkup( keyboard=[ [KeyboardButton(text="/start")], [KeyboardButton(text="[services]")], [KeyboardButton(text="[book]")], [KeyboardButton(text="[mybookings]")], [KeyboardButton(text="[contacts]")], [KeyboardButton(text="[about]")], ], resize_keyboard=True ) cancel_menu = ReplyKeyboardMarkup( keyboard=[ [KeyboardButton(text="cancel")] ], resize_keyboard=True )