| import { cn } from "@/lib/utils"; |
|
|
| export function Card({ className, ...props }: React.HTMLAttributes<HTMLDivElement>) { |
| return ( |
| <div |
| className={cn( |
| "border border-border bg-card/80 text-card-foreground", |
| className, |
| )} |
| {...props} |
| /> |
| ); |
| } |
|
|
| export function CardHeader({ className, ...props }: React.HTMLAttributes<HTMLDivElement>) { |
| return <div className={cn("flex flex-col gap-1.5 p-4 border-b border-border", className)} {...props} />; |
| } |
|
|
| export function CardTitle({ className, ...props }: React.HTMLAttributes<HTMLHeadingElement>) { |
| return <h3 className={cn("font-expanded text-sm font-bold tracking-[0.08em] uppercase blend-lighter", className)} {...props} />; |
| } |
|
|
| export function CardDescription({ className, ...props }: React.HTMLAttributes<HTMLParagraphElement>) { |
| return <p className={cn("font-display text-xs text-muted-foreground", className)} {...props} />; |
| } |
|
|
| export function CardContent({ className, ...props }: React.HTMLAttributes<HTMLDivElement>) { |
| return <div className={cn("p-4", className)} {...props} />; |
| } |
|
|