"use client"; import React from "react"; import { motion } from "framer-motion"; import { Briefcase, Users, ClipboardCheck, UserPlus, DollarSign, Handshake } from "lucide-react"; const steps = [ { icon: , title: "Post Jobs in 1 Click", desc: "Publish roles across multiple job boards instantly.", }, { icon: , title: "Track Applications", desc: "View, filter & collaborate on candidates with smart ATS.", }, { icon: , title: "Hire Smarter", desc: "Shortlist, schedule interviews & make quick decisions.", }, { icon: , title: "Onboard to Employee", desc: "Convert hires seamlessly into HRMS — no data re-entry!", }, { icon: , title: "Manage HR & Payroll", desc: "Attendance, payroll & performance in one place.", }, { icon: , title: "Nurture Clients & Grow", desc: "Built-in CRM to boost retention, sales & business scale.", }, ]; const HowItWorks = () => { return (
How It Works Winixco connects your hiring, HR and CRM workflows into one powerful operating system — from job posting to payroll & business growth. {/* Steps */}
{steps.map((step, i) => (
{step.icon}

{step.title}

{step.desc}

))}
Complete the loop. Grow endlessly. 💼✨
); }; export default HowItWorks;