"use client"; import React from "react"; import { motion } from "framer-motion"; import AnimatedSection from "./Animated"; import { home } from "@/services/Constants"; const Benefits = () => { return (
{/* Heading */}

Why Choose Winixco?

Winixco helps companies stay efficient, connected, and future-ready. With automation, accuracy, and real-time syncing, every department works smarter — not harder.

{/* Feature Cards */}
{home.benefits.map((feature, index) => (
{feature.icon}

{feature.title}

{feature.description}

))}
); }; export default Benefits;