You've already forked Travel-Agent
32 lines
726 B
Python
32 lines
726 B
Python
__all__ = ("get",)
|
||
|
||
from aiogram import types
|
||
from aiogram.utils.keyboard import InlineKeyboardBuilder
|
||
|
||
|
||
def get():
|
||
builder = InlineKeyboardBuilder()
|
||
|
||
builder.row(
|
||
types.InlineKeyboardButton(
|
||
text="👤 Profile",
|
||
callback_data="menu_profile",
|
||
),
|
||
types.InlineKeyboardButton(
|
||
text="âž• Create travel",
|
||
callback_data="menu_create_travel",
|
||
),
|
||
)
|
||
builder.row(
|
||
types.InlineKeyboardButton(
|
||
text="📃 Travels",
|
||
callback_data="menu_travels",
|
||
),
|
||
types.InlineKeyboardButton(
|
||
text="🔵 Temp",
|
||
callback_data="menu_temp",
|
||
),
|
||
)
|
||
|
||
return builder.as_markup()
|