diff options
Diffstat (limited to 'packages/cli/src/ui/components/Tips.tsx')
| -rw-r--r-- | packages/cli/src/ui/components/Tips.tsx | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/packages/cli/src/ui/components/Tips.tsx b/packages/cli/src/ui/components/Tips.tsx new file mode 100644 index 00000000..5dbe60b2 --- /dev/null +++ b/packages/cli/src/ui/components/Tips.tsx @@ -0,0 +1,17 @@ +import React from 'react'; +import { Box, Text } from 'ink'; +import { UI_WIDTH } from '../constants.js'; + +const Tips: React.FC = () => { + return ( + <Box flexDirection="column" marginBottom={1} width={UI_WIDTH}> + <Text>Tips for getting started:</Text> + <Text>1. <Text bold>/help</Text> for more information.</Text> + <Text>2. <Text bold>/init</Text> to create a GEMINI.md for instructions & context.</Text> + <Text>3. Ask coding questions, edit code or run commands.</Text> + <Text>4. Be specific for the best results.</Text> + </Box> + ); +}; + +export default Tips;
\ No newline at end of file |
