// src/cart.jsx — Cart screen (drawer-style) with delivery summary, tip, promo. function EmptyCart({ onNav, isMobile }) { const nearby = STORES.slice(0, 3); const quickCats = [ { id: "deli", label: "Deli", icon: "Baguette" }, { id: "coffee", label: "Coffee", icon: "Coffee" }, { id: "drinks", label: "Drinks", icon: "Snow" }, { id: "beer", label: "Beer & Wine", icon: "Beer" }, { id: "snacks", label: "Snacks", icon: "Cookie" }, { id: "produce", label: "Produce", icon: "Apple" }, ]; return (
Describe your evening in one sentence and Opa builds the cart — or pick a store nearby and browse the old-fashioned way.