// BoxMind sample data
const BOXES = [
  { id: 'b1', name: 'Kitchen Essentials',   meta: 'Pantry · 24 items · 3 lent',  color: '#0D7377', location: 'Kitchen', icon: 'Package' },
  { id: 'b2', name: 'Holiday Decor',        meta: 'Attic · 42 items',           color: '#8B5CF6', location: 'Attic',   icon: 'Box' },
  { id: 'b3', name: 'Camping Gear',         meta: 'Garage · 18 items · 1 lent', color: '#F5A623', location: 'Garage',  icon: 'Package' },
  { id: 'b4', name: 'Winter Clothes',       meta: 'Bedroom closet · 32 items',  color: '#3B82F6', location: 'Bedroom', icon: 'Archive' },
  { id: 'b5', name: 'Books — Fiction',      meta: 'Office shelf · 58 items',    color: '#EF4444', location: 'Office',  icon: 'Archive' },
  { id: 'b6', name: 'Tools — Hand',         meta: 'Garage bin 3 · 22 items',    color: '#10B981', location: 'Garage',  icon: 'Package' },
  { id: 'b7', name: 'Photo Albums',         meta: 'Living room · 12 items',     color: '#EC4899', location: 'Living',  icon: 'Box' },
];

const ITEMS = [
  { name: 'Cast-iron skillet (12")', meta: 'Qty 1 · #kitchen #cookware' },
  { name: 'KitchenAid stand mixer',  meta: 'Qty 1 · Lent to Priya', loan: { status: 'due_soon', label: 'Due Tue' } },
  { name: 'Ceramic mixing bowls',    meta: 'Qty 3 · #kitchen' },
  { name: 'Pyrex measuring cup set', meta: 'Qty 1 · #kitchen' },
  { name: 'Instant Pot 6-qt',        meta: 'Qty 1 · Lent to Marco', loan: { status: 'overdue', label: '4d late' } },
  { name: 'Stainless flatware set',  meta: 'Qty 12' },
];

const LOANS = [
  { borrower: 'Priya Anand',     item: 'KitchenAid stand mixer',  due: 'Due Tue', status: 'due_soon' },
  { borrower: 'Marco Ruiz',      item: 'Instant Pot 6-qt',        due: '4d late', status: 'overdue' },
  { borrower: 'Elena Park',      item: 'Camping tent (4-person)', due: 'Due Oct 12', status: 'active' },
  { borrower: 'Dad',             item: 'Impact driver + bits',    due: '2d late', status: 'overdue' },
  { borrower: 'Jordan Hayes',    item: 'Bluetooth speaker',       due: 'Due Nov 3', status: 'active' },
];

const ACTIVITY = [
  { name: 'Added Cast-iron skillet',       meta: 'Kitchen Essentials · 9:42',   icon: 'Plus', color: '#10B981' },
  { name: 'Lent Instant Pot to Marco',     meta: 'Kitchen Essentials · yday',   icon: 'HandReach', color: '#F5A623' },
  { name: 'Scanned Camping Gear',          meta: 'Garage · 2d ago',             icon: 'Radio', color: '#0D7377' },
  { name: 'Tagged 8 items #holiday',       meta: 'Holiday Decor · 2d ago',      icon: 'Tag', color: '#8B5CF6' },
  { name: 'Marked 1 loan returned',        meta: 'Books — Fiction · 3d ago',    icon: 'CheckCircle', color: '#10B981' },
];

Object.assign(window, { BOXES, ITEMS, LOANS, ACTIVITY });
