diff --git a/src/components/ui/Card.tsx b/src/components/ui/Card.tsx new file mode 100644 index 0000000..d1f3c48 --- /dev/null +++ b/src/components/ui/Card.tsx @@ -0,0 +1,54 @@ +import { cn } from "@/lib/utils" + +interface CardProps { + className?: string + children: React.ReactNode +} + +export function Card({ className, children }: CardProps) { + return ( +
+ {children} +
+ ) +} + +export function CardContent({ className, children }: CardProps) { + return ( +