added /a in /help for terminalcommands and changed easter egg hint text to different font

This commit is contained in:
JorySeverijnse 2025-12-07 19:38:31 +01:00
parent 0e0c320477
commit b0b229a9f9

View File

@ -31,27 +31,27 @@ const commands: Record<string, string> = {
}; };
const helpText = `Available commands: const helpText = `Available commands:
/home - Navigate to Home /home - Navigate to Home
/about, /me - Navigate to About Me /about, /me - Navigate to About Me
/projects, /proj - Navigate to Projects /projects, /proj - Navigate to Projects
/resources, /res - Navigate to Resources /resources, /res - Navigate to Resources
/links - Navigate to Links /links - Navigate to Links
/faq - Navigate to FAQ /faq - Navigate to FAQ
/games, /arcade - Browse Arcade games /games, /arcade - Browse Arcade games
/tetris - Play Tetris /tetris - Play Tetris
/pacman - Play Pac-Man /pacman - Play Pac-Man
/snake - Play Snake /snake - Play Snake
/breakout - Play Breakout /breakout - Play Breakout
/music, /m - Navigate to Music Player /music, /m - Navigate to Music Player
/ai, /chat - Navigate to AI Chat /ai, /chat - Navigate to AI Chat
/achievements - View achievements /achievements /a - View achievements
/help, /h - Show this help message /help, /h - Show this help message
/clear, /c - Clear terminal output`; /clear, /c - Clear terminal output`;
const helpHint = ` const helpHint = `
...there may be other commands. ...there may be other commands.
Perhaps a HINT to an easter egg exists? Perhaps a to an easter egg exists?
`; `;
const TerminalCommand = () => { const TerminalCommand = () => {