"use client"; import { UsersIcon, CurrencyDollarIcon, ChartPieIcon, ArrowTrendingUpIcon, } from '@heroicons/react/24/outline'; export default function CRMPage() { const stats = [ { name: 'Leads Totais', value: '124', icon: UsersIcon, color: 'blue' }, { name: 'Oportunidades', value: 'R$ 450k', icon: CurrencyDollarIcon, color: 'green' }, { name: 'Taxa de Conversão', value: '24%', icon: ChartPieIcon, color: 'purple' }, { name: 'Crescimento', value: '+12%', icon: ArrowTrendingUpIcon, color: 'orange' }, ]; return (

Mission Control (CRM)

Visão geral do relacionamento com clientes

{stats.map((stat) => { const Icon = stat.icon; return (

{stat.name}

{stat.value}

); })}

Funil de Vendas (Em breve)

Atividades Recentes (Em breve)

); }