File size: 323 Bytes
dd10606
1e8ff3b
dd10606
24d8b3c
dd10606
 
1e8ff3b
 
 
1
2
3
4
5
6
7
8
9
10
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="relative overflow-hidden flex-1 h-full bg-zinc-50 rounded-md flex items-center justify-center">
        {children}
      </div>
    </div>
  );
}