"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 };
{item.text}
Your message helps us understand your business better β and deliver the right solution. Letβs build something powerful for your organisation.