"use client"; import React from "react"; import { motion } from "framer-motion"; import { CalendarCheck, Send, CheckCircle } from "lucide-react"; import { Button } from "@/components/ui/button"; const features = [ "Personalized walkthrough of ATS, HRMS & CRM", "Explore dashboards, workflows & automation", "Pricing, setup & integration guidance", "Ask anything tailored to your business needs", ]; const BookDemoSection = () => { return (
{/* Background Glow */}
🗓️ Book a Demo or{" "} Consultation Want to see how Winixco can improve hiring, HR operations or client management? Get your free 1-on-1 demo — our team responds within 12 hours. {/* Feature List */} {features.map((item, index) => (

{item}

))}
{/* CTA Buttons */}
); }; export default BookDemoSection;