diff --git a/frontend/src/ui/App.tsx b/frontend/src/ui/App.tsx index 294c00b..1b21ac1 100644 --- a/frontend/src/ui/App.tsx +++ b/frontend/src/ui/App.tsx @@ -16,6 +16,8 @@ import LoyaltyGoalsPage from './pages/loyalty/Goals'; import LoyaltyRedeemQueuePage from './pages/loyalty/Queue'; import TwitchSettingsPage from './pages/twitch/APISettings'; import TwitchBotSettingsPage from './pages/twitch/BotSettings'; +import TwitchBotCommandsPage from './pages/twitch/Commands'; +import TwitchBotModulesPage from './pages/twitch/Modules'; interface RouteItem { name: string; @@ -44,6 +46,14 @@ const menu: RouteItem[] = [ name: 'Bot Configuration', route: '/twitch/bot/settings', }, + { + name: 'Bot commands', + route: '/twitch/bot/commands', + }, + { + name: 'Bot modules', + route: '/twitch/bot/modules', + }, ], }, { @@ -146,6 +156,8 @@ export default function App(): React.ReactElement { + +