Добавил изображение в меню

- Добавлена команда вывода версии `/version`
This commit is contained in:
2026-01-03 03:04:28 +03:00
parent 44329b8a16
commit b8c2979f99
5 changed files with 26 additions and 5 deletions
+7 -1
View File
@@ -36,6 +36,12 @@ const menuProjects = (ctx) => {
);
};
const menu = new Menu('main').text('💪🏻 Скиллы', menuSkills).row().text('👔 Проекты', menuProjects).row();
const menu = new Menu('main')
.url('🍞 Записки Соры и Широ', 'https://t.me/qp11db')
.row()
.text('💪🏻 Скиллы', menuSkills)
.row()
.text('👔 Проекты', menuProjects)
.row();
export { menu };
+3
View File
@@ -0,0 +1,3 @@
const choice = (list) => list[Math.floor(Math.random() * list.length)];
export { choice };