werefox-cafe/src/info/components/introduction-card.js

12 lines
368 B
JavaScript

export default function introductionCard({ introduction }) {
return (
<div className="items-center justify-center space-y-4 p-8">
{Object.keys(introduction).map((info) => (
<p className="overflow-wrap w-full text-lg text-center text-werefox-blue-dark dark:text-werefox-blue">
{introduction[info]}
</p>
))}
</div>
);
}