@@ -7,18 +7,16 @@ export const startCommandHandler = async (ctx) => {
77 console . log ( "User:" , ctx . from . username || ctx . from . id ) ;
88
99 const welcomeMessage =
10- `🎓 *Welcome to Learnverse Bot!*\n\n` +
11- `I can help you access:\n` +
12- `• 📁 Files & Study Materials\n` +
13- `• 📚 Syllabuses & PDFs\n` +
14- `• 📝 Notes & Resources\n\n` +
15- `Use /search to find links to files, syllabuses & notes!\n` +
16- `Use /help to see all available commands.` ;
10+ `Meow! I'm Luna 🐱\n\n` +
11+ `I help students find study materials - notes, PYQs, syllabuses, you name it.\n` +
12+ `Everything's organized and ready for you.\n\n` +
13+ `Try /search to get started, or /help if you need guidance.\n\n` +
14+ `Happy studying!` ;
1715
1816 await ctx . reply ( welcomeMessage , {
1917 parse_mode : "Markdown" ,
2018 ...Markup . inlineKeyboard ( [
21- [ Markup . button . url ( "📢 Join Telegram Group" , TELEGRAM_GROUP_LINK ) ] ,
19+ [ Markup . button . url ( "Join Study Group" , TELEGRAM_GROUP_LINK ) ] ,
2220 ] ) ,
2321 } ) ;
2422 console . log ( "Start command executed successfully" ) ;
@@ -29,18 +27,18 @@ export const helpCommandHandler = async (ctx) => {
2927 console . log ( "User:" , ctx . from . username || ctx . from . id ) ;
3028
3129 const helpMessage =
32- `🤖 *Learnverse Bot Help* \n\n` +
33- `I am here to help you access study materials, notes, and syllabuses easily .\n\n` +
34- `*Available Commands:*\n` +
35- `/search - 🔍 Find file, syllabus & notes links \n` +
36- `/help - ℹ️ Show this help message\n` +
37- `/start - 🔄 Restart the bot session \n\n` +
38- `_Select /search to browse materials by Branch > Year > Subject_ ` ;
30+ `Luna here! 🐱 \n\n` +
31+ `I've organized all your study materials - just tell me what you need .\n\n` +
32+ `*Commands:*\n` +
33+ `/search - Browse materials by branch, year, and subject \n` +
34+ `/help - Show this message\n` +
35+ `/start - Start over \n\n` +
36+ `Pro tip: Use /search and I'll guide you through everything step by step. ` ;
3937
4038 await ctx . reply ( helpMessage , {
4139 parse_mode : "Markdown" ,
4240 ...Markup . inlineKeyboard ( [
43- [ Markup . button . url ( "📢 Join Telegram Group" , TELEGRAM_GROUP_LINK ) ] ,
41+ [ Markup . button . url ( "Join Study Group" , TELEGRAM_GROUP_LINK ) ] ,
4442 ] ) ,
4543 } ) ;
4644 console . log ( "Help command executed successfully" ) ;
0 commit comments