feat: Implement CRM and External Integrations

This commit is contained in:
gpt-engineer-app[bot]
2025-10-11 16:13:55 +00:00
parent b22adcbf34
commit ecc24cd7ed
6 changed files with 1477 additions and 2 deletions

View File

@@ -59,7 +59,8 @@ import {
Store,
Server,
ShieldAlert,
UserCircle
UserCircle,
Mail
} from 'lucide-react';
const DashboardLayout = ({ children }: { children: React.ReactNode }) => {
@@ -128,9 +129,20 @@ const DashboardLayout = ({ children }: { children: React.ReactNode }) => {
{ icon: FileText, label: 'Historial', path: '/dashboard/commissions/payments' }
]
},
{
icon: Users,
label: 'CRM',
path: '/dashboard/crm',
subItems: [
{ icon: BarChart3, label: 'Dashboard', path: '/dashboard/crm/dashboard' },
{ icon: Users, label: 'Contactos', path: '/dashboard/crm/contacts' },
{ icon: Mail, label: 'Campañas', path: '/dashboard/crm/campaigns' },
{ icon: BarChart3, label: 'Analytics', path: '/dashboard/crm/analytics' }
]
},
{
icon: Settings,
label: 'Configuración',
label: 'Configuración',
path: '/dashboard/config',
subItems: [
{ icon: Server, label: 'APIs', path: '/dashboard/config/apis' },