mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-13 15:40:57 -07:00
21 lines
617 B
TypeScript
21 lines
617 B
TypeScript
import React from 'react';
|
|
import { Box, Text } from 'ink';
|
|
import { UI_WIDTH } from '../constants.js';
|
|
|
|
const Tips: React.FC = () => (
|
|
<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;
|