export default function introductionCard({ introduction }) { return (
{Object.keys(introduction).map((info) => (

{introduction[info]}

))}
); }