"use client" import { Card } from "@/app/_components/ui/card" import { Clock, Moon, Sun } from "lucide-react" interface TimelineLegendProps { position?: "top-right" | "top-left" | "bottom-right" | "bottom-left" } export default function TimelineLegend({ position = "bottom-right" }: TimelineLegendProps) { const positionClasses = { "top-right": "top-4 right-4", "top-left": "top-4 left-4", "bottom-right": "bottom-4 right-4", "bottom-left": "bottom-4 left-4" } return (

Incident Time Patterns

Morning (5am-12pm)
Afternoon (12pm-5pm)
Evening (5pm-9pm)
Night (9pm-5am)
Circles show average incident time. Click for details.
) }