"use client"; import { Plus, Search, Filter, Brain, AlertCircle, Clock, CheckCircle2, MoreHorizontal, Users, BarChart } from "lucide-react"; // Mock Data const projects = [ { id: 1, name: "Cognis Mobile App", status: "In Progress", progress: 65, dueDate: "May 28, 2026", team: ["JD", "AK", "LM"], aiRisk: "Low", aiSuggestion: "On track. Consistent velocity detected." }, { id: 2, name: "Q3 Marketing Site", status: "At Risk", progress: 32, dueDate: "Jun 15, 2026", team: ["RK", "ST"], aiRisk: "High", aiSuggestion: "Bottleneck detected in Design phase. Suggest assigning 1 more designer." }, { id: 3, name: "Database Migration", status: "Review", progress: 90, dueDate: "May 20, 2026", team: ["JS", "AL", "BQ", "MK"], aiRisk: "Medium", aiSuggestion: "QA testing is taking 20% longer than historical average." }, { id: 4, name: "User Authentication V2", status: "To Do", progress: 0, dueDate: "Jul 01, 2026", team: ["AK", "LM"], aiRisk: "Low", aiSuggestion: "Dependencies cleared. Ready to start." } ]; export default function ProjectsPage() { return (
I have analyzed your active projects. Q3 Marketing Site is showing a high risk of delay based on current commit velocity. I recommend redistributing tasks or extending the deadline by 4 days.
{project.aiSuggestion}