'use client'; interface TopicInputProps { value: string; onChange: (value: string) => void; onResearch: () => void; isResearching: boolean; } export default function TopicInput({ value, onChange, onResearch, isResearching, }: TopicInputProps): React.ReactElement { return (
We'll find trending posts and articles on this topic to inspire your carousel