'use client'; import { Lightbulb } from 'lucide-react'; const TEMPLATES = [ 'Who manages the person who leads the team that built?', 'What services depend on?', 'How are two entities connected?', 'What projects is involved in?', 'Which organizations partner with?', 'What technology does use?', ]; interface QueryTemplatesProps { onSelect: (template: string) => void; } export function QueryTemplates({ onSelect }: QueryTemplatesProps) { return (