From 37c7c954d4bae7a509ba5e1bd8a76a25ca6359c2 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Tue, 28 Jul 2026 09:03:31 +0000 Subject: [PATCH] Deploy --- src/components/ui/Card.tsx | 49 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 src/components/ui/Card.tsx diff --git a/src/components/ui/Card.tsx b/src/components/ui/Card.tsx new file mode 100644 index 0000000..9712004 --- /dev/null +++ b/src/components/ui/Card.tsx @@ -0,0 +1,49 @@ +import { cn } from "@/lib/utils" + +export function Card({ className, children }: { className?: string; children: React.ReactNode }) { + return ( +
+ {children} +
+ ) +} + +export function CardHeader({ className, children }: { className?: string; children: React.ReactNode }) { + return ( +
+ {children} +
+ ) +} + +export function CardTitle({ className, children }: { className?: string; children: React.ReactNode }) { + return ( +

+ {children} +

+ ) +} + +export function CardDescription({ className, children }: { className?: string; children: React.ReactNode }) { + return ( +

+ {children} +

+ ) +} + +export function CardContent({ className, children }: { className?: string; children: React.ReactNode }) { + return ( +
+ {children} +
+ ) +} + +export function CardFooter({ className, children }: { className?: string; children: React.ReactNode }) { + return ( +
+ {children} +
+ ) +} \ No newline at end of file