From 98453eda1763ddd9c10dcce18ff794bdb48c1c79 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Tue, 23 Jun 2026 08:47:09 +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..19bdf51 --- /dev/null +++ b/src/components/ui/Card.tsx @@ -0,0 +1,55 @@ +import { cn } from "@/lib/utils" +import React from "react" + +interface CardProps { + className?: string + children?: React.ReactNode +} + +export function Card({ className, children, ...props }: CardProps & React.HTMLAttributes) { + return ( +
+ {children} +
+ ) +} + +export function CardHeader({ className, children, ...props }: CardProps & React.HTMLAttributes) { + return ( +
+ {children} +
+ ) +} + +export function CardTitle({ className, children, ...props }: CardProps & React.HTMLAttributes) { + return ( +

+ {children} +

+ ) +} + +export function CardDescription({ className, children, ...props }: CardProps & React.HTMLAttributes) { + return ( +

+ {children} +

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