import { OfficeItem } from '@/types/types'; export const OFFICES_DATA: OfficeItem[] = [ { id: 1, name: "Ufficio Tecnico", status: "online", temp: 22, lights: true, power: 450 }, { id: 2, name: "Sala Riunioni", status: "offline", temp: 19, lights: false, power: 0 }, { id: 3, name: "Amministrazione", status: "online", temp: 24, lights: true, power: 320 }, { id: 4, name: "Magazzino", status: "online", temp: 18, lights: false, power: 120 }, ];