From b9a190bd6e12c111792b36cb5f4a6b1cdbaf2ce1 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Wed, 5 Aug 2026 18:14:39 +0000 Subject: [PATCH] Deploy --- src/components/ui/Card.tsx | 55 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 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..bcde6a8 --- /dev/null +++ b/src/components/ui/Card.tsx @@ -0,0 +1,55 @@ +import { cn } from '@/lib/utils' +import type { ReactNode } from 'react' + +interface CardProps { + className?: string + children?: ReactNode +} + +export function Card({ className, children }: CardProps) { + return ( +
+ {children} +
+ ) +} + +export function CardHeader({ className, children }: CardProps) { + return ( +
+ {children} +
+ ) +} + +export function CardTitle({ className, children }: CardProps) { + return ( +

+ {children} +

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

+ {children} +

+ ) +} + +export function CardContent({ className, children }: CardProps) { + return ( +
+ {children} +
+ ) +} + +export function CardFooter({ className, children }: CardProps) { + return ( +
+ {children} +
+ ) +} \ No newline at end of file