Files
gemini-cli/packages/cli/src/ui/components/Tips.tsx
T

23 lines
631 B
TypeScript
Raw Normal View History

2025-04-15 21:41:08 -07:00
import React from 'react';
import { Box, Text } from 'ink';
import { UI_WIDTH } from '../constants.js';
const Tips: React.FC = () => {
2025-04-17 18:06:21 -04:00
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>
);
2025-04-15 21:41:08 -07:00
};
2025-04-17 18:06:21 -04:00
export default Tips;