// Active Port Lanes — clean operational trade-lane table. (function () { const { useState } = React; const { Reveal, Eyebrow } = window.GR; const INBOUND_LANES = [ { code: 'RTM → MIA', origin: 'Rotterdam', originRegion: 'Netherlands · Europe', destination: 'Miami, FL', destinationRegion: 'USA HQ', cargo: 'Commodities · Bulk', cadence: 'Recurring' }, { code: 'SHA → MIA', origin: 'Shanghai', originRegion: 'China · Asia Pacific', destination: 'Miami, FL', destinationRegion: 'USA HQ', cargo: 'Industrial Chemicals', cadence: 'Recurring' }, { code: 'HOU → MIA', origin: 'Houston', originRegion: 'Texas · USA', destination: 'Miami, FL', destinationRegion: 'USA HQ', cargo: 'Commodities · Bulk', cadence: 'Continuous' }, ]; const OUTBOUND_LANES = [ { code: 'MIA → VER', origin: 'Miami, FL', originRegion: 'USA HQ', destination: 'Veracruz', destinationRegion: 'Mexico', cargo: 'Mixed Portfolio', cadence: 'Recurring' }, { code: 'MIA → PTY', origin: 'Miami, FL', originRegion: 'USA HQ', destination: 'Panama City', destinationRegion: 'Panama', cargo: 'Industrial Chemicals', cadence: 'Recurring' }, { code: 'MIA → CTG', origin: 'Miami, FL', originRegion: 'USA HQ', destination: 'Cartagena', destinationRegion: 'Colombia', cargo: 'Mixed Portfolio', cadence: 'Continuous' }, { code: 'MIA → CLL', origin: 'Miami, FL', originRegion: 'USA HQ', destination: 'Callao', destinationRegion: 'Peru', cargo: 'Commodities · Bulk', cadence: 'Recurring' }, { code: 'MIA → SSZ', origin: 'Miami, FL', originRegion: 'USA HQ', destination: 'Santos', destinationRegion: 'Brazil', cargo: 'Mixed Portfolio', cadence: 'Recurring' }, { code: 'MIA → BUE', origin: 'Miami, FL', originRegion: 'USA HQ', destination: 'Buenos Aires', destinationRegion: 'Argentina', cargo: 'Industrial Chemicals', cadence: 'Recurring' }, ]; const REGIONS_GLANCE = [ { code: 'NA', label: 'North America', detail: 'Florida HQ · US ports · Mexico' }, { code: 'CA', label: 'Central America', detail: 'Panama · Caribbean corridor' }, { code: 'SA', label: 'South America', detail: 'Colombia · Peru · Brazil · Argentina' }, { code: 'EU', label: 'Europe', detail: 'Netherlands · Supplier sourcing' }, { code: 'AS', label: 'Asia', detail: 'China · Supplier sourcing' }, ]; function LaneRow({ lane, direction, hovered, setHovered }) { const isHovered = hovered === lane.code; const accent = direction === 'inbound' ? 'rgba(109,179,63,0.5)' : 'var(--color-green)'; return (
setHovered(lane.code)} onMouseLeave={() => setHovered(null)} style={{ display: 'grid', gridTemplateColumns: '120px 1fr 1fr 1fr 120px', alignItems: 'center', gap: 16, padding: '18px 20px', borderBottom: '1px solid rgba(255,255,255,0.08)', background: isHovered ? 'rgba(109,179,63,0.06)' : 'transparent', transition: 'background 0.18s var(--ease-out)', }} >
{lane.code}
{lane.origin}
{lane.originRegion}
{lane.destination}
{lane.destinationRegion}
{lane.cargo}
{lane.cadence}
); } function MobileLaneCard({ lane, direction }) { const accent = direction === 'inbound' ? 'rgba(109,179,63,0.5)' : 'var(--color-green)'; return (
{lane.code}
Origin
{lane.origin}
{lane.originRegion}
Destination
{lane.destination}
{lane.destinationRegion}
{lane.cargo}
{lane.cadence}
); } function PortLanes() { const [hovered, setHovered] = useState(null); const [tab, setTab] = useState('all'); const visible = { all: [...INBOUND_LANES, ...OUTBOUND_LANES], inbound: INBOUND_LANES, outbound: OUTBOUND_LANES, }[tab]; return (
Active Port Lanes

Trade Routes
Connecting LATAM.

Active trade corridors moving chemicals and commodities between our Florida hub, certified suppliers in Europe and Asia, and industrial buyers across Latin America. Each lane is operated end-to-end — origin port through customs through final delivery.

{/* Regional coverage strip */}
{REGIONS_GLANCE.map((r, i) => (
{r.code}
{r.label}
{r.detail}
))}
{/* Tabs */}
{[ ['all', 'All Lanes', INBOUND_LANES.length + OUTBOUND_LANES.length], ['inbound', 'Supplier Inbound', INBOUND_LANES.length], ['outbound', 'LATAM Outbound', OUTBOUND_LANES.length], ].map(([k, label, count]) => ( ))}
{/* Desktop table */}
Lane
Origin
Destination
Cargo
Cadence
{visible.map((lane) => { const isInbound = INBOUND_LANES.includes(lane); return ( ); })}
{/* Mobile cards */}
{visible.map((lane) => { const isInbound = INBOUND_LANES.includes(lane); return ( ); })}
{/* Stat strip */}
09 Active Lanes 03 Continents 12+ Product Lines in Transit FL · USA Operations HQ
); } window.GR = Object.assign(window.GR || {}, { PortLanes }); })();