Usage
import { Card } from "lambda-ui-components";
export default function App() {
return (
<Card
header={{ title: "Card Title", description: "Card Description" }}
image={{ src: "image-url.jpg", alt: "Image Alt" }}
>
<p>This is the main content of the card.</p>
</Card>
);
}