/* Products index + Category detail */ function ProductsPage({ navigate, onQuote }) { const { CATEGORIES } = window.MOBICO_DATA; const [filter, setFilter] = useState("all"); const filtered = filter==="all" ? CATEGORIES : CATEGORIES.filter(c=>{ if(filter==="furniture") return c.group==="Office furniture"; if(filter==="interior") return c.group==="Interior systems"; return true; }); return (
| {k} |