summaryrefslogtreecommitdiff
path: root/packages/cli/src/ui/components/Tips.tsx
blob: 6be53360d2237307cdb535c0841f93e924a6a997 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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;