"use client"; import React from "react"; import { motion } from "framer-motion"; import { CheckCircle, Rocket, Shield, Zap, MessageCircle, Calendar, Clock } from "lucide-react"; import Link from "next/link"; // Feature data const features = [ { text: "Fast and transparent customer support", icon: Rocket }, { text: "Simple onboarding and quick implementation", icon: Zap }, { text: "Scalable modules for startups to enterprises", icon: CheckCircle }, { text: "Custom features built on request", icon: MessageCircle }, { text: "Secure, cloud-based infrastructure", icon: Shield }, { text: "Real-time analytics and reporting", icon: Clock }, // New feature added ]; const ChooseWinixco = () => { return (
{/* Title */} ⭐ Why Businesses{" "} Choose Winixco {/* Feature Grid */}
{features.map((item, index) => (

{item.text}

))}
); }; // Contact CTA Section const WeLoveToHearFromYou = () => { return (
{/* Title */}

πŸ“£ We’d Love to Hear From You

Your message helps us understand your business better β€” and deliver the right solution. Let’s build something powerful for your organisation.

{/* CTA Buttons */}
πŸ‘‰ Send Message πŸ‘‰ Book a Demo
); }; export { ChooseWinixco, WeLoveToHearFromYou };