"use client"; import { Badge, Button, Card } from "ikoncomponents"; import { ArrowRight, Brain, BrainCircuit } from "lucide-react"; import { useRouter } from "next/dist/client/components/navigation"; export function HeroSection() { const router = useRouter(); const handleStartTrial = () => { router.push("/main/overview/dashboard"); }; return (
{/* LEFT SECTION */}
AI-Powered Platform

Predictive Project
Management

Transform reactive project tracking into proactive, predictive management. Leverage AI and ML for executive-level insights into financial health, resource optimization, and schedule predictability.

20%

Reduced Schedule Overruns

85%

AI Prediction Accuracy

{/* RIGHT SECTION */}
Live Preview

Enterprise Rollout

Phase 2 Active

92
AI Score
75%
); } function StatBox({ label, value, highlight, }: { label: string; value: string; highlight?: boolean; }) { return (
{value}
{label}
); }