"use client" import { AlertTriangle, BarChart3, Briefcase, FileText, MapPin, Shield, User, Users, Clock, Search } from "lucide-react" import { Badge } from "@/app/_components/ui/badge" import { BentoGrid, BentoGridItem } from "@/app/_components/ui/bento-grid" import { Progress } from "@/app/_components/ui/progress" import CrimeMap from "@/app/_components/map/crime-map" export default function CrimeManagement() { return (

Crime Management Dashboard

Overview of current cases, incidents, and department status

System: Online Alert Level: Normal
} colSpan="2" rowSpan="2" > {/*
*/}
} >
Violent Crime +12%
Property Crime -8%
Cybercrime +23%
} >
{[1, 2, 3, 4, 5].map((i) => (
{i}
))}
+12
Total on duty: 18/24 officers
} colSpan="2" >
{[ { id: "CR-7823", type: "Homicide", location: "Downtown", priority: "Critical", time: "2h ago" }, { id: "CR-7825", type: "Armed Robbery", location: "North District", priority: "High", time: "4h ago" }, { id: "CR-7830", type: "Kidnapping", location: "West Side", priority: "Critical", time: "6h ago" }, ].map((case_) => (

Case #{case_.id}

{case_.priority}

{case_.type} • {case_.location} • {case_.time}

))}
} >
{[ { id: "EV-4523", type: "Weapon", case: "CR-7823", status: "Processing" }, { id: "EV-4525", type: "Digital Media", case: "CR-7825", status: "Secured" }, { id: "EV-4527", type: "DNA Sample", case: "CR-7830", status: "Lab Analysis" }, ].map((evidence) => (

{evidence.id}

{evidence.type} • Case #{evidence.case}

{evidence.status}
))}
} >
{[ { id: "POI-3421", name: "John Doe", case: "CR-7823", status: "Wanted" }, { id: "POI-3422", name: "Jane Smith", case: "CR-7825", status: "In Custody" }, { id: "POI-3423", name: "Robert Johnson", case: "CR-7830", status: "Under Surveillance" }, ].map((person) => (

{person.name}

{person.id} • Case #{person.case}

{person.status}
))}
} >
Case Clearance Rate 68%
Response Time 4.2 min avg
Evidence Processing 72%
}>
14
+3 from yesterday
{["Assault", "Theft", "DUI", "Drugs", "Trespassing", "Vandalism"].map((crime) => (
{crime}
))}
}>
Current Hour
24 High
Average Wait 1:42
Operators Available
4/6 Understaffed
} >
Recent searches: CR-7823, CR-7825, John Doe, Jane Smith
) }