"use client"; import React from "react"; import { motion } from "framer-motion"; import { BadgeCheck, Handshake, Globe, Layers } from "lucide-react"; import { Button } from "@/components/ui/button"; const partnerships = [ "White-label & reseller partnership", "Revenue-sharing models", "API-based integrations", "Custom enterprise solutions", ]; const PartnerWithUsSection = () => { return (
🤝 Partner With{" "} Winixco

Winixco empowers recruitment agencies, IT firms, HR consultants and SaaS resellers to expand their service offerings & grow revenue.

{partnerships.map((item, index) => (

{item}

))}
); }; export default PartnerWithUsSection;