/* global React, VendusAtoms */
const { I, Chip, Btn, Card, Eyebrow, SectionTitle, AreaChart, Bars, Donut, Sparkline, brl, brlShort, pct } = window.VendusAtoms;
const { useState, useMemo, useEffect } = React;

/* =====================================================
   DADOS — vazio por padrão.
   Cada usuário (tenant) começa SEM dados; ele preenche
   conectando uma loja (Mercado Livre etc.) ou cadastrando.
   Nada de dados de exemplo/fantasma aqui.
===================================================== */

const STORES = [];
const REVENUE_MONTH = [];
const COSTS_MONTH = [];
const REVENUE_DAYS = [];
const TOP_PRODUCTS = [];
const RECENT_SALES = [];
const SUPPLIERS = [];
const COSTS = [];
const CASHFLOW_30D = [];
const PAYMENT_ALERTS = [];
const INSIGHTS = [];
const GOALS = [];

window.VendusData = {
  STORES, REVENUE_MONTH, COSTS_MONTH, REVENUE_DAYS,
  TOP_PRODUCTS, RECENT_SALES, SUPPLIERS, COSTS,
  CASHFLOW_30D, PAYMENT_ALERTS, INSIGHTS, GOALS,
};
