diff --git a/sites/mainweb/components/Card.tsx b/sites/mainweb/components/Card.tsx new file mode 100644 index 0000000..791dd1d --- /dev/null +++ b/sites/mainweb/components/Card.tsx @@ -0,0 +1,16 @@ +import { ReactNode } from "react"; + +interface CardProps { + children: ReactNode; + className?: string; +} + +const Card = ({ children, className = "" }: CardProps) => { + return ( +