const QUESTIONS = [ "What port does analytics-service use?", "How does JWT authentication work?", "What Kafka topics are configured?", "Describe the CI/CD pipeline", "What databases are used?", "How is Nginx configured?", ]; interface Props { onSelect: (question: string) => void; disabled: boolean; } export function ExampleQuestions({ onSelect, disabled }: Props) { return (

// example questions

{QUESTIONS.map((q) => ( ))}
); }