// WHOLESALE — Reseller program page; toggles to dashboard preview when authed const WholesaleHero = ({isResellerAuthed, onSignup}) => (
Wholesale program · Reseller Margin you can actually
build a shop on.

Smoke shops, dispensaries, and white-label operators get tiered pricing across the catalog. Lab COAs with every order. Restock alerts in your inbox.

{!isResellerAuthed && (
)}
); const PricingTiers = () => (
Tiered pricing · Volume discount Three tiers.
Auto-applied at cart.
{[ {tier:"BRONZE", units:"1k–4,999", off:"35%", color:"#c89060"}, {tier:"SILVER", units:"5k–24,999", off:"45%", color:"#cfcfcf"}, {tier:"GOLD", units:"25k+", off:"55%", color:"#f7b829"}, ].map((t, i) => (
— {t.tier}
{t.off}
off MSRP
))}
); const PerksGrid = () => (
What's included · Every reseller Standard kit.
{[ {icon:"Beaker", title:"Lab COAs", body:"Every shipment. PDF + traceable batch ID."}, {icon:"Truck", title:"Tracked ship", body:"All freight ships tracked. Restock SLA in writing."}, {icon:"Tag", title:"MAP enforced", body:"We protect your margin. Violators lose program."}, {icon:"Bolt", title:"Restock alerts", body:"Email + SMS when your top SKUs are low."}, {icon:"Box", title:"Dropship-ready", body:"Optional DTC fulfillment under your label."}, {icon:"User", title:"Dedicated rep", body:"Real human, named, on Slack or email."}, ].map(p => { const Icon = Icons[p.icon] || Icons.Box; return (
{p.title}

{p.body}

); })}
); const ResellerDashboard = () => { const orders = [ {id:"SSL-26-0418", date:"Apr 18", units:5000, total:13750, status:"Delivered", color:"#5fdc8e"}, {id:"SSL-26-0402", date:"Apr 02", units:2500, total:6800, status:"In transit", color:"var(--color-cyan)"}, {id:"SSL-26-0319", date:"Mar 19", units:8000, total:21200, status:"Delivered", color:"#5fdc8e"}, ]; return (
Reseller dashboard · BUDS & CO LLC Welcome back.
Tier · Silver · 45% off
{[ {v:"$41,750", l:"YTD spend", c:"var(--color-cyan)"}, {v:"15,500", l:"Units shipped", c:"#f7b829"}, {v:"3", l:"Open orders", c:"var(--color-pink)"}, {v:"Net 15", l:"Terms", c:"var(--color-fg)"}, ].map(s => (
{s.v}
{s.l}
))}
Recent orders View all →
{orders.map((o, i) => (
{o.id} {o.date} {o.units.toLocaleString()} units ${o.total.toLocaleString()} {o.status}
))}
); }; const Wholesale = ({setRoute, onSignup, isResellerAuthed}) => ( <> {isResellerAuthed && }
Apply
in 3 minutes.

Business name, EIN, resale cert, monthly volume. Approval in 1–3 business days.

); window.Wholesale = Wholesale;