diff options
| author | Seth Troisi <[email protected]> | 2025-04-29 23:17:36 +0000 |
|---|---|---|
| committer | Seth Troisi <[email protected]> | 2025-04-29 17:20:38 -0700 |
| commit | bf659f19776ddc4eb9825bd5376c66288aed06c8 (patch) | |
| tree | 4555647498346ef32592d60ddde4e1ab1516bdb2 /packages/cli/src/ui/App.tsx | |
| parent | 19bdc441d6c928aa8c63a3718a469b4d750bd9d4 (diff) | |
Add intro with some abilities and commands
Diffstat (limited to 'packages/cli/src/ui/App.tsx')
| -rw-r--r-- | packages/cli/src/ui/App.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/cli/src/ui/App.tsx b/packages/cli/src/ui/App.tsx index 3b499ab9..ce326af5 100644 --- a/packages/cli/src/ui/App.tsx +++ b/packages/cli/src/ui/App.tsx @@ -19,6 +19,7 @@ import { ThemeDialog } from './components/ThemeDialog.js'; import { useStartupWarnings } from './hooks/useAppEffects.js'; import { shortenPath, type Config } from '@gemini-code/server'; import { Colors } from './colors.js'; +import { Intro } from './components/Intro.js'; import { Tips } from './components/Tips.js'; import { ConsoleOutput } from './components/ConsolePatcher.js'; import { HistoryItemDisplay } from './components/HistoryItemDisplay.js'; @@ -103,6 +104,7 @@ export const App = ({ config, cliVersion }: AppProps) => { <Box flexDirection="column" key={'header-' + index}> <Header /> <Tips /> + <Intro /> </Box> ); } |
