/* 6ix Mela — contact info strip */ const CONTACTS = [ { ic: 'mail', l: 'General', v: 'info@6ixmela.com', href: 'mailto:info@6ixmela.com' }, { ic: 'star', l: 'Sponsorship', v: 'sponsors@theplug.ca', href: 'mailto:sponsors@theplug.ca' }, { ic: 'briefcase', l: 'Partners & Creators', v: 'partners@theplug.ca', href: 'mailto:partners@theplug.ca' }, { ic: 'mic', l: 'Press & Media', v: 'press@theplug.ca', href: 'mailto:press@theplug.ca' }, { ic: 'map-pin', l: 'Find Us', v: 'Sobeys Stadium, Toronto', href: null }, ]; function ContactStrip() { return (
Reach the team

Get In Touch

{CONTACTS.map((c) => (
{c.l}
{c.href ? {c.v} :
{c.v}
}
))}
); } window.ContactStrip = ContactStrip;