Jon Taylor
ui updates
dd10606
raw
history blame
314 Bytes
export default function Card({ children }) {
return (
<div className="rounded-xl bg-white border border-zinc-200 p-2 w-full max-w-3xl aspect-video">
<div className="overflow-hidden flex-1 h-full bg-zinc-50 rounded-md flex items-center justify-center">
{children}
</div>
</div>
);
}