"use client"; import React from "react"; import { motion } from "framer-motion"; import { ArrowRight } from "lucide-react"; import { Button } from "@/components/ui/button"; import { useRouter } from "next/navigation"; // CTA Section const CTA = () => { const router = useRouter(); return (

Ready to Transform Your Hiring?

Join hundreds of companies already using Winixco to hire smarter, faster, and with confidence.

); }; export default CTA;