"use client"; import { Badge, Card } from "ikoncomponents"; import { CheckCircle2 } from "lucide-react"; const visibilityPoints = [ "AI Health Scores with confidence percentages", "Real-time P/L and budget tracking", "Resource utilization heatmaps", "Portfolio-level performance metrics", ]; const dashboardStats = [ { label: "Active Projects", value: "12" }, { label: "Avg Health Score", value: "87%", color: "text-emerald-400" }, { label: "Total Budget", value: "$4.2M" }, { label: "At Risk", value: "3", color: "text-amber-500" }, ]; export function VisibilitySection() { return (
{/* Left Column */}
Executive Dashboard

Complete Visibility
at a Glance

A unified view of project health, financial metrics, and predictive insights designed for strategic decision-making.

{visibilityPoints.map((point) => (
{point}
))}
{/* Right Column */}
{/* Background glow */}

Portfolio Overview

Healthy
{dashboardStats.map((stat) => (
{stat.value}
{stat.label}
))}
); }