From bb7211f2305528c73b1f932a39fb23f5b692cc18 Mon Sep 17 00:00:00 2001 From: Aleksandar Date: Sat, 14 Mar 2026 00:03:07 +0100 Subject: [PATCH] feat: add CardTitle, CardDescription, CardFooter components --- apps/admin/src/components/ui/card.tsx | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) 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 (