"use client"; import { motion } from "framer-motion"; import { Card, CardContent } from "@/components/ui/card"; const testimonials = [ { quote: "Winixco cut our hiring time in half. The AI resume screening is incredibly accurate, and our team loves the seamless integration.", name: "Sarah Chen", role: "Head of Talent, TechScale Inc.", }, { quote: "The best recruitment platform we've used. From candidate sourcing to onboarding, everything is in one place.", name: "Marcus Rodriguez", role: "Founder, Recruiting Plus", }, { quote: "Implementing Winixco was a game-changer. The automation alone has freed up 20 hours per week for strategic work.", name: "Emily Watson", role: "VP HR, Global Enterprises Ltd.", }, ]; export default function TestimonialsSection() { return (

Trusted by Leading Companies

See what recruiters and HR teams say about Winixco

{testimonials.map((item, i) => (

"{item.quote}"

{item.name}

{item.role}

))}
); }