"use client"; import Image from "next/image"; import { Card, CardBody } from "@heroui/react"; interface StatData { label: string; value: string; change: string; isPositive: boolean; } interface StatsCardsProps { stats?: StatData[]; } export default function StatsCards({ stats = [] }: StatsCardsProps) { if (!stats || stats.length === 0) { return null; } return (