"use client"; import { motion } from "framer-motion"; const stats = [ { value: "60-80%", label: "Faster Hiring Process", }, { value: "500+", label: "Happy Customers", }, { value: "50+", label: "Countries Supported", }, { value: "100+", label: "Integrations Available", }, ]; export default function StatsSection() { return (
{stats.map((stat, i) => (

{stat.value}

{stat.label}

))}
); }