diff --git a/apps/admin/src/components/ui/card.tsx b/apps/admin/src/components/ui/card.tsx index 1841511..6e31e89 100644 --- a/apps/admin/src/components/ui/card.tsx +++ b/apps/admin/src/components/ui/card.tsx @@ -27,4 +27,28 @@ export function CardContent({ children, className = '' }: CardProps) { {children} ) +} + +export function CardTitle({ children, className = '' }: CardProps) { + return ( +
+ {children} +
+ ) +} + +export function CardFooter({ children, className = '' }: CardProps) { + return ( +