/** * Trouve-KA — composant UI Card (gk-card : bordure encre, ombre décalée) * Author: Simon-Pierre Boucher * Contact: contact@spboucher.ai */ import type { HTMLAttributes } from "react"; import { cn } from "@/lib/utils"; function Card({ className, ...props }: HTMLAttributes) { return
; } function CardHeader({ className, ...props }: HTMLAttributes) { return
; } function CardTitle({ className, ...props }: HTMLAttributes) { return (

); } function CardContent({ className, ...props }: HTMLAttributes) { return
; } export { Card, CardHeader, CardTitle, CardContent };