'use client' import { GlassCard } from './GlassCard' interface StatCardProps { label: string value: string | number icon: React.ReactNode color?: string delay?: number isDark?: boolean } export function StatCard({ label, value, icon, color = '#a78bfa', delay = 0, isDark = true }: StatCardProps) { return (
{icon}

{label}

{value}

) }