import { Search } from 'lucide-react'; import { cn } from '@/lib/cn'; /** Plain GET form — works without JavaScript; the ⌘K dialog is the enhanced path. */ export function SearchForm({ q, className, autoFocus = false }: { q: string; className?: string; autoFocus?: boolean }) { return (
); }