diff --git a/apps/admin/src/components/ui/card.tsx b/apps/admin/src/components/ui/card.tsx index 6e31e89..751c8f2 100644 --- a/apps/admin/src/components/ui/card.tsx +++ b/apps/admin/src/components/ui/card.tsx @@ -45,6 +45,30 @@ export function CardDescription({ children, className = '' }: CardProps) { ) } +export function CardFooter({ children, className = '' }: CardProps) { + return ( +
+ {children} +
+ ) +} + +export function CardTitle({ children, className = '' }: CardProps) { + return ( +

+ {children} +

+ ) +} + +export function CardDescription({ children, className = '' }: CardProps) { + return ( +

+ {children} +

+ ) +} + export function CardFooter({ children, className = '' }: CardProps) { return (