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

HR Analytics & Insights

Real-time data that drives better HR decisions

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