'use client' import { Users, TrendingUp, Calendar, Clock } from 'lucide-react' import { LeadStats } from '@/lib/db' interface StatsCardsProps { stats: LeadStats } export default function StatsCards({ stats }: StatsCardsProps) { const cards = [ { title: 'Total Leads', value: stats.total_leads, icon: Users, color: 'mulberry', }, { title: 'Today', value: stats.leads_today, icon: Clock, color: 'ocean', }, { title: 'This Week', value: stats.leads_this_week, icon: Calendar, color: 'eucalyptus', }, { title: 'This Month', value: stats.leads_this_month, icon: TrendingUp, color: 'coral', }, ] return (
{card.title}
{card.value.toLocaleString()}