"use client"; import { Button, Card } from "ikoncomponents"; import { ArrowRight } from "lucide-react"; import { useRouter } from "next/dist/client/components/navigation"; export function CTASection() { const router = useRouter(); const handleGetStarted = () => { router.push("/main/overview/dashboard"); }; return (
{/* Decorative radial glow */}

Ready to Transform Your Projects?

Join thousands of teams using AI to deliver projects on time and under budget.

); }