from aiogram.types import InlineKeyboardMarkup from aiogram.types import InlineKeyboardButton def get_services_keyboard(): return InlineKeyboardMarkup( inline_keyboard=[ [ InlineKeyboardButton( text="💆 Массаж", callback_data="service_massage" ) ], [ InlineKeyboardButton( text="🌿 SPA", callback_data="service_spa" ) ], [ InlineKeyboardButton( text="✨ Косметология", callback_data="service_cosmetology" ) ] ] )