/** * @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.{' '} /help {' '} for more information. 2. Ask coding questions, edit code or run commands. 3. Be specific for the best results. {geminiMdFileCount === 0 && ( 4. Create{' '} GEMINI.md {' '} files to customize your interactions with Gemini. )} ); };