export default function Card({ title, data }: { title: string; data: string }) { return (

{title}

{data}

); }