import React from "react"; import Image from "next/image"; import { ReactMarkdown } from "@/components/Markdown"; interface ContextItemProperties { item: { name: string; url: string; description: string; provider: { name: string; image?: { thumbnail: { contentUrl: string; }; }; }[]; datePublished: string; image?: { contentUrl: string; thumbnail: { contentUrl: string; width: number; height: number }; }; }; } const ProviderInfo: React.FC<{ name: string; date: string }> = ({ name, date }) => (