"use client"; // Status color constants — kept in sync with EntryMap marker colours export const STATUS_COLORS: Record = { free: "#0A7A3A", in_progress: "#9A6700", favorite: "#1D4ED8", }; export const STATUS_LABELS: Record = { free: "Свободный", in_progress: "В работе", favorite: "Избранный", }; export function ParcelLegend() { const entries = Object.keys(STATUS_LABELS) as Array< keyof typeof STATUS_LABELS >; return (
Статус участка {entries.map((status) => (
{STATUS_LABELS[status]}
))}
); }