interface GoogleConfigProps { googleApiKey: string; onInputChange: (value: string, field: string) => void; } export default function GoogleConfig({ googleApiKey, onInputChange }: GoogleConfigProps) { return (
onInputChange(e.target.value, "google_api_key")} className="w-full px-4 py-2.5 outline-none border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500/20 focus:border-blue-500 transition-colors" placeholder="Enter your API key" />

Your API key will be stored locally and never shared

); }