// Home page — hero, stats bar, company overview, services, CTA band. (function () { const { Reveal, Eyebrow, useCountUp, Link } = window.GR; const MARQUEE = [ 'SODIUM HYPOCHLORITE', 'CAUSTIC SODA', 'METHANOL', 'XYLENE', 'ETHANOL', 'IPA', 'LABSA', 'SLES', 'PAC', 'CALCIUM HYPOCHLORITE', 'LIQUID CHLORINE GAS', ]; const SERVICES = [ { num: '01', tag: 'Sourcing', title: 'Industrial Chemical Sourcing', body: 'We source certified industrial chemicals — Sodium Hypochlorite, Calcium Hypochlorite, SLES, LABSA, PAC, IPA — from vetted manufacturers and deliver them to industrial buyers across Latin America.' }, { num: '02', tag: 'Trading', title: 'Commodities Trading', body: 'We trade bulk chemical commodities — Caustic Soda, Methanol, Ethanol, Xylene, Liquid Chlorine — sourced at commercial scale from certified global producers and traded into Latin American industry.' }, { num: '03', tag: 'Trade Ops', title: 'Import & Export Management', body: 'Full management of import/export documentation, customs coordination, regulatory compliance, and international trade logistics across multiple jurisdictions.' }, { num: '04', tag: 'Supply Chain', title: 'Supply Chain Coordination', body: 'Proactive supply chain planning, supplier management, and inventory flow control across our active product portfolio — engineered to prevent the supply gaps that disrupt industrial operations.' }, { num: '05', tag: 'Port Logistics', title: 'Port Logistics Management', body: 'Direct handling of port operations, freight coordination, cargo documentation, and customs across major LATAM and US ports — for both bulk and packaged chemical cargo.' }, { num: '06', tag: 'LATAM', title: 'LATAM Commercialization', body: 'Established commercial relationships and operational knowledge across Latin American industrial sectors — enabling efficient product placement and reliable long-term partnerships.' }, ]; function Stat({ value, suffix = '', label, count = true }) { const isNumeric = typeof value === 'number'; const [ref, val] = useCountUp(isNumeric && count ? value : 0); return (
[ {isNumeric ? val : value}{suffix} ]
{label}
); } function ServiceCard({ s, i }) { return (
{ e.currentTarget.style.borderLeft = '4px solid var(--color-navy)'; e.currentTarget.style.paddingLeft = '29px'; e.currentTarget.style.boxShadow = 'var(--shadow-card-hover)'; e.currentTarget.style.transform = 'translateY(-2px)'; }} onMouseLeave={(e) => { e.currentTarget.style.borderLeft = '1px solid rgba(30,27,75,0.12)'; e.currentTarget.style.paddingLeft = '32px'; e.currentTarget.style.boxShadow = 'none'; e.currentTarget.style.transform = 'translateY(0)'; }} >
// {s.tag} {s.num}

{s.title}

{s.body}

); } function HomePage({ openQuote }) { return ( {/* HERO */}
Florida HQ · LATAM Distribution · 3 Continents

Connecting Global Suppliers
with Latin American Industry.

Reliable sourcing, logistics, and distribution solutions for industrial chemicals and commodities across LATAM. Florida-based. Family-owned. Operating across 3 continents.

Contact Our Team Miami HQ · 25.7617° N North America · South America · Europe · Asia Est. 2019
{/* Marquee */}
{[...MARQUEE, ...MARQUEE, ...MARQUEE].map((m, i) => ( {m}· ))}
{/* STATS BAR */}
{/* OVERVIEW */}
Who We Are

Industrial chemicals.
Commodities trading.
One trusted LATAM partner.

{[ 'GR Unity Trading LLC is a family-owned trading and distribution company focused on supplying industrial raw materials, chemicals, and commodities throughout Latin America.', 'Operating from Florida, USA, we work with international suppliers and manufacturers across the Americas, Europe, and Asia to provide reliable sourcing, logistics coordination, and supply chain solutions.', 'We act as a bridge between global producers and Latin American industry — handling international sourcing, port logistics, import/export operations, and regional distribution under one operational team.', 'Privately funded, family-owned, and operationally focused on long-term partnerships — we make decisions for the long term and execute with the agility larger distributors cannot match.', ].map((p, i) => (

{p}

))}
{/* SERVICES */}
What We Do

Sourcing, Trading,
Distribution.

We combine industrial chemicals distribution and commodities trading under one operational umbrella — giving LATAM clients a single, accountable supplier for both categories of chemical input, supported by full international logistics and port operations.

{SERVICES.map((s, i) => )}
{/* CTA BAND */}
Get Started

Tell us what you need.
We’ll source it.

Whether you’re procuring industrial chemicals, sourcing chemical commodities, or coordinating LATAM distribution — our team responds within 24 business hours.

Contact Our Team
); } window.GR = Object.assign(window.GR || {}, { HomePage }); })();