From 81aa3c0f880d1bc2393271d88088d42c75fac5da Mon Sep 17 00:00:00 2001 From: jyswee Date: Thu, 23 Jul 2026 22:10:09 +0000 Subject: [PATCH] Seed: blog template (17 files) --- src/components/ui/card.tsx | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 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..017a8fe --- /dev/null +++ b/src/components/ui/card.tsx @@ -0,0 +1,31 @@ +import * as React from "react"; +import { cn } from "@/lib/utils"; + +export const Card = React.forwardRef>( + ({ className, ...props }, ref) => ( +
+ ) +); +Card.displayName = "Card"; + +export const CardHeader = ({ className, ...props }: React.HTMLAttributes) => ( +
+); + +export const CardTitle = ({ className, ...props }: React.HTMLAttributes) => ( +

+); + +export const CardDescription = ({ className, ...props }: React.HTMLAttributes) => ( +

+); + +export const CardContent = ({ className, ...props }: React.HTMLAttributes) => ( +

+); + +export const CardFooter = ({ className, ...props }: React.HTMLAttributes) => ( +
+); + +export default Card;