/* GoldenPharm — Home page. */ const { Card: HCard, Badge: HBadge, Stat: HStat } = window.GoldenPharmDesignSystem_2b9ade; const I = window.GPIcons; function Pill({ children, active }) { return ( {children} ); } /* ---------------- Hero ---------------- */ function Hero() { return (
{/* left */}
{I.sparkle()} Delivering Quality Service

The trusted partner for every aesthetic need

GoldenPharm distributes premium European dermocosmetic and aesthetic brands to licensed pharmacies, clinics and physicians — with full cold-chain integrity and batch traceability on every order.

Explore our brands Book a consult
{/* right visual */}
{/* top product chip */}
{I.droplet()}
Rejuvea HA
Multi-molecular serum
In stock · ships next day
{/* consult chip */}
{I.calendar()}Consults · Mon–Fri
{/* specialist mini card */}
Authentic, certified supply
Every batch traceable to its European manufacturer.
QA
Quality team
GoldenPharm
); } /* ---------------- Standards bar ---------------- */ function StandardsBar() { const items = [ ['GMP certified', 'shield'], ['ISO 13485', 'fileCheck'], ['ISO 22716', 'award'], ['CE marked', 'check'], ['2–8 °C cold chain', 'thermometer'], ]; return (
{items.map(([label, icon], i) => ( {I[icon]()}{label} ))}
); } /* ---------------- Brands strip ---------------- */ function BrandsStrip() { return (
Brands we distribute

Premium European labels, brought to your shelf

View all brands {I.arrowRight()}
{window.GP_BRANDS.map((b) => (
{b.category}
))}
); } /* ---------------- Why ---------------- */ function Why() { const feats = [ { icon: 'sparkles', title: 'Authentic European brands', body: 'Direct, authorised distribution agreements — never grey-market. Every product is the genuine article.' }, { icon: 'thermometer', title: 'Uninterrupted cold chain', body: 'Temperature-sensitive boosters and biologics held and shipped within validated 2–8 °C conditions.' }, { icon: 'fileCheck', title: 'Full regulatory compliance', body: 'ISO 13485, ISO 22716 and CE documentation available on request for every lot we supply.' }, { icon: 'truck', title: 'Reliable nationwide delivery', body: 'Next-day distribution to licensed clinics and pharmacies, with 99.8% on-time performance.' }, ]; return (
Why GoldenPharm

Quality and reliability, built into every order

We are the dependable partner behind the pharmacist and the practitioner — precise, compliant, and on time.

{feats.map((f, i) => ( {I[f.icon]()}
{f.title}
{f.body}
))}
); } /* ---------------- Stats band ---------------- */ function StatsBand() { const stats = [['99.8%', 'On-time delivery'], ['3', 'Exclusive brands'], ['140+', 'Products supplied'], ['26+', 'Years of service']]; return (
{stats.map(([v, l]) => )}
); } /* ---------------- About teaser ---------------- */ function AboutTeaser() { return (
{I.award()}Trusted since 2000
About us

Our team is here to deliver the best possible care

For more than two decades, GoldenPharm has connected European innovation in dermocosmetics with the practitioners who use it. We handle sourcing, compliance, cold-chain logistics and support — so clinics can focus on results.

{[['Authorised distribution', 'shield'], ['Cold-chain certified', 'thermometer'], ['Practitioner support', 'headset'], ['Documented compliance', 'fileCheck']].map(([t, ic]) => (
{I[ic]()} {t}
))}
Learn more about us
); } /* ---------------- CTA ---------------- */ function Cta() { return (

Open a wholesale account

Licensed pharmacies and clinics can order online with next-day delivery and a dedicated account manager.

Become a partner
); } function HomePage() { window.useReveal(); return ( ); } window.HomePage = HomePage;