/* GoldenPharm — Brands page. */ const { Card: BCard, Badge: BBadge } = window.GoldenPharmDesignSystem_2b9ade; const BI = window.GPIcons; function BrandsHero() { return (
Our brands

Premium European brands, exclusively distributed

GoldenPharm holds authorised distribution agreements with leading European dermocosmetic and aesthetic manufacturers — bringing clinically-backed innovation to providers you trust.

); } function BrandShowcase() { return (
{window.GP_BRANDS.map((b, i) => (
{/* visual + text, alternating order */}
{b.origin}
{b.tagline}

{b.blurb}

{b.products.map((p) => ( {p} ))}
Learn more Visit website
))}
); } function Standards() { const items = [ { icon: 'fileCheck', t: 'ISO 13485', d: 'Medical-device quality management across our aesthetic device lines.' }, { icon: 'award', t: 'ISO 22716', d: 'Cosmetic Good Manufacturing Practice for dermocosmetic ranges.' }, { icon: 'shield', t: 'CE marked', d: 'European conformity on every regulated medical device we distribute.' }, { icon: 'thermometer', t: 'Validated cold chain', d: '2–8 °C integrity maintained from manufacturer to your clinic door.' }, ]; return (
Why these brands

Every brand we carry meets the same standard

We only partner with manufacturers whose certifications, traceability and clinical evidence match our own commitment to quality.

{items.map((f, i) => ( {BI[f.icon]()}
{f.t}
{f.d}
))}
); } function PartnerCta() { return (

Represent your brand in our market

Are you a manufacturer seeking a trusted, compliant distribution partner? We'd welcome the conversation.

Partner with us
); } function BrandsPage() { window.useReveal(); return ( ); } window.BrandsPage = BrandsPage;