"use client"; import React from "react"; import { motion } from "framer-motion"; import { Button } from "@/components/ui/button"; import { BarChart3 } from "lucide-react"; import { crm } from "@/services/Constants"; const CRMAnalytics: React.FC = () => { return (

CRM Analytics & Insights

Real-time customer and sales intelligence that helps you close more deals and grow faster

{crm.ANALYTICS_STATS.map((stat, idx) => (
{stat.value}
{stat.label}
))}
); }; export default CRMAnalytics;