// data.jsx — option constants only. Real customer data lives in Supabase (loaded by
// phone-app via SBData). No demo/fake customers here.

const STAGES = ['New lead', 'Contacted', 'Appointment', 'Test drive', 'Offer made', 'Delivery', 'Won', 'Lost'];

const JOURNEY = ['Just looking', 'Comparing', 'Ready if right price', 'Decided'];

const FINANCE = ['Cash', 'Pre-approved', 'Needs finance', 'Trade-in pending', 'Unknown'];

// Empty — the app loads live customers from Supabase. Kept as globals for any
// component that still references them, but they render nothing.
const CUSTOMERS = [];
const TODAY_SCHEDULE = [];
const TOMORROW_SCHEDULE = [];
const SAMPLE_LEAD_BLOCK = '';

Object.assign(window, {
  STAGES, JOURNEY, FINANCE, CUSTOMERS, TODAY_SCHEDULE, TOMORROW_SCHEDULE,
  SAMPLE_LEAD_BLOCK,
});
