export interface ProductData { url: string; crawledAt: string; brand?: string | null; price?: string | null; rating?: string | null; reviews?: string | null; title?: string | null; imageUrl?: string | null; [key: string]: any; }