Stage 01 - bootstrap v2 stable start
This commit is contained in:
23
app/src/telegram/keyboards/reply.py
Normal file
23
app/src/telegram/keyboards/reply.py
Normal file
@@ -0,0 +1,23 @@
|
||||
from aiogram.types import KeyboardButton, ReplyKeyboardMarkup
|
||||
|
||||
|
||||
def build_main_menu_keyboard() -> ReplyKeyboardMarkup:
|
||||
return ReplyKeyboardMarkup(
|
||||
keyboard=[
|
||||
[
|
||||
KeyboardButton(text="🏠 Главная"),
|
||||
KeyboardButton(text="📈 Рынок"),
|
||||
KeyboardButton(text="💼 Портфель"),
|
||||
],
|
||||
[
|
||||
KeyboardButton(text="⚡ Торговля"),
|
||||
KeyboardButton(text="🤖 Авто"),
|
||||
KeyboardButton(text="📒 Журнал"),
|
||||
],
|
||||
[
|
||||
KeyboardButton(text="⚙️ Система"),
|
||||
],
|
||||
],
|
||||
resize_keyboard=True,
|
||||
input_field_placeholder="Выбери раздел...",
|
||||
)
|
||||
Reference in New Issue
Block a user