"use client"; import React from "react"; import { motion } from "framer-motion"; import { Check, ArrowRight, PlayCircle, Users, UserCog, Briefcase } from "lucide-react"; import { Button } from "@/components/ui/button"; import { home } from "@/services/Constants"; const Hero = () => { return (
{/* Background Animation */}
{/* Badge */} 🚀 All-In-One Talent & Workforce Platform {/* Title */} Build Powerful{" "} ATS, HRMS & CRM {" "} Solutions {/* Subtext */} Winixco helps organizations simplify hiring, manage employees, and enhance client relationships — all in one platform. {/* CTA Buttons */} {/* Trust checklist */} No credit card required • 14-day free trial {/* Product Highlight Cards */} {[ { icon: Users, title: "ATS", desc: "Automate hiring, AI screening & smoother interviews." }, { icon: UserCog, title: "HRMS", desc: "Employee onboarding, payroll & performance." }, { icon: Briefcase, title: "CRM", desc: "Manage clients & strengthen candidate relationships." }, ].map((item, i) => (

{item.title}

{item.desc}

))}
{/* Stats Section */} {home.stats.map((stat, index) => (
{stat.value}
{stat.label}
))}
); }; export default Hero;