export default function DataTable({ headline, data, }: { headline: string; data: { key: string; value: string }[]; }) { return ( <>