export function Card({
children,
}: Readonly<{
children: React.ReactNode;
}>): JSX.Element {
return <div className="bg-secondary rounded-lg p-3 w-max xs:w-fit">{children}</div>;
}