peer-at-code-web/ui/Card.tsx
2023-02-14 16:22:18 +01:00

8 lines
327 B
TypeScript

export default function Card({ title, data }: { title: string; data: string }) {
return (
<div className="flex w-full flex-col rounded-lg border-2 border-highlight-primary bg-primary-700 p-4 shadow-md">
<h3 className="text-xl font-semibold">{title}</h3>
<p className="text-muted">{data}</p>
</div>
);
}