/** * @license * Copyright 2025 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import React from 'react'; import { Box, Text } from 'ink'; import { Colors } from '../colors.js'; import { type Config } from '@gemini-cli/core'; interface TipsProps { config: Config; } export const Tips: React.FC = ({ config }) => { const geminiMdFileCount = config.getGeminiMdFileCount(); return ( Tips for getting started: 1. Ask questions, edit code or run commands. 2. Be specific for the best results. {geminiMdFileCount === 0 && ( 3. Create{' '} GEMINI.md {' '} files to customize your interactions with Gemini. )} {geminiMdFileCount === 0 ? '4.' : '3.'}{' '} /help {' '} for more information. ); };