"use client"; import React from "react"; import { motion } from "framer-motion"; import { Wrench, Clock, Zap, HelpCircle } from "lucide-react"; import { Button } from "@/components/ui/button"; const supportPoints = [ "ATS, HRMS & CRM module setup guidance", "Integrations including email, SSO & APIs", "Troubleshooting & bug resolution", "Custom workflow or feature implementation", ]; const TechnicalSupportSection = () => { return (
{/* Glow */}
🛠️ Technical Support &{" "} Assistance

Already using Winixco? We’re here to ensure everything works seamlessly — fast responses & expert support guaranteed.

{/* Support Features */}
{supportPoints.map((item, index) => (

{item}

))}
); }; export default TechnicalSupportSection;