import * as React from 'react' import { cva, type VariantProps } from 'class-variance-authority' import { cn } from '@/lib/utils' const cardVariants = cva( 'flex flex-col rounded-xl border text-card-foreground transition-all', { variants: { variant: { default: 'bg-card shadow-sm', elevated: 'bg-card shadow-lg hover:shadow-xl', ghost: 'bg-transparent border-transparent', outline: 'bg-transparent border-border', muted: 'bg-muted/50 border-transparent', glass: 'bg-card/80 backdrop-blur-xl border-border/50', interactive: 'bg-card shadow-sm cursor-pointer hover:shadow-lg hover:border-primary/50 hover:-translate-y-0.5', glow: 'bg-card shadow-sm hover:shadow-[0_0_30px_oklch(0.75_0.18_195_/_0.15)] hover:border-primary/50', glowMagenta: 'bg-card shadow-sm hover:shadow-[0_0_30px_oklch(0.65_0.25_330_/_0.15)] hover:border-secondary/50', }, padding: { none: '', sm: 'p-4', default: 'p-6', lg: 'p-8', }, }, defaultVariants: { variant: 'default', padding: 'none', }, }, ) interface CardProps extends React.ComponentProps<'div'>, VariantProps {} function Card({ className, variant, padding, ...props }: CardProps) { return (
) } function CardHeader({ className, ...props }: React.ComponentProps<'div'>) { return (
) } function CardTitle({ className, ...props }: React.ComponentProps<'h3'>) { return (

) } function CardDescription({ className, ...props }: React.ComponentProps<'p'>) { return (

) } function CardAction({ className, ...props }: React.ComponentProps<'div'>) { return (

) } function CardContent({ className, ...props }: React.ComponentProps<'div'>) { return (
) } function CardFooter({ className, ...props }: React.ComponentProps<'div'>) { return (
) } export { Card, CardHeader, CardFooter, CardTitle, CardAction, CardDescription, CardContent, cardVariants, }