"use client"; import { Plus, Search, Filter, Brain, Building2, Mail, Phone, MoreHorizontal, ShieldCheck, AlertCircle, ArrowUpRight } from "lucide-react"; // Mock Data const clients = [ { id: 1, name: "Acme Corp", contact: "Alice Johnson", email: "alice@acme.co", status: "Active", ltv: "$45,000", activeProjects: 2, aiSentiment: "Excellent", aiInsight: "Client engagement is at an all-time high. AI suggests pitching the Q4 Marketing Retainer this week." }, { id: 2, name: "Globex Industries", contact: "Mark Smith", email: "msmith@globex.com", status: "At Risk", ltv: "$12,500", activeProjects: 1, aiSentiment: "Frustrated", aiInsight: "Sentiment analysis on recent emails indicates frustration with turnaround times. Schedule a sync ASAP." }, { id: 3, name: "Soylent Corp", contact: "John Doe", email: "john.d@soylent.net", status: "Onboarding", ltv: "$0", activeProjects: 1, aiSentiment: "Neutral", aiInsight: "Awaiting signed NDA. Send an automated reminder tomorrow at 10 AM." }, { id: 4, name: "Initech", contact: "Bill Lumbergh", email: "bill@initech.com", status: "Active", ltv: "$110,000", activeProjects: 3, aiSentiment: "Good", aiInsight: "Consistent payment history. No immediate actions required." } ]; export default function ClientsCRMPage() { return (
{/* Top Header */}

Freelance / Clients CRM

{/* AI CRM Intelligence */}

AI Client Intelligence

You have a high probability (85%) of closing an upsell with Acme Corp this month. Their usage of the current product has doubled. Shall I draft a customized proposal highlighting scale benefits?

{/* KPI Cards */}

Total Active Clients

14

Pipeline LTV

$167k
+12%

Average Client Health

92/100
Excellent
{/* Clients List */}
Client
Status / LTV
AI Relationship Insight
Actions
{clients.map((client) => (
{/* Client Details */}
{client.name}
{client.contact}
{/* Status / LTV */}
{client.status} {client.ltv} LTV
{/* AI Insight */}
Sentiment: {client.aiSentiment}

{client.aiInsight}

{/* Actions */}
))}
); }