import React from "react"; import clsx from "clsx"; type CardProps = { children: React.ReactNode; className?: string; }; const Card = ({ children, className }: CardProps) => { return (