// Industries strip. const NS_IND = window.AnsysDigitalDesignSystem_4543d7; function Industries() { const { SectionHeading } = NS_IND; const items = [ ["shirt", "Fashion"], ["sparkles", "Beauty"], ["gem", "Jewellery"], ["smartphone", "Electronics"], ["armchair", "Furniture"], ["lamp", "Home Decor"], ["utensils", "Food"], ["heart-pulse", "Health"], ["dog", "Pet"], ["crown", "Luxury Brands"], ["download", "Digital Products"], ["store", "& more"], ]; return (
{items.map(([ic, name], i) => (
{name}
))}
); } Object.assign(window, { Industries });