"use client"; import Link from 'next/link'; import { SolutionGuard } from '@/components/auth/SolutionGuard'; import { UsersIcon, CurrencyDollarIcon, ChartPieIcon, ArrowTrendingUpIcon, ListBulletIcon, ArrowRightIcon, } 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' }, ]; const quickLinks = [ { name: 'Clientes', description: 'Gerencie seus contatos e clientes', icon: UsersIcon, href: '/crm/clientes', color: 'blue', }, { name: 'Listas', description: 'Organize clientes em listas', icon: ListBulletIcon, href: '/crm/listas', color: 'purple', }, ]; return (

CRM

Visão geral do relacionamento com clientes

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

{stat.name}

{stat.value}

); })}
{/* Quick Links */}

Acesso Rápido

{quickLinks.map((link) => { const Icon = link.icon; return (

{link.name}

{link.description}

); })}

Funil de Vendas (Em breve)

Atividades Recentes (Em breve)

); }