/* 6ix Mela — ticket tiers. GA + VIP Floor buy on Ticketmaster; Box Suite by enquiry. */ const TICKETS_URL = 'https://www.ticketmaster.ca/6ix-mela-toronto-ontario-09-12-2026/event/100064F08F4C6125'; const TIERS = [ { id: 'ga', cls: 'ga', name: 'General Admission', price: 'From $77', unit: '', badge: null, action: 'buy', feats: ['General admission seat', 'One mega stage, all night', 'Food & drink on site', 'Doors 6 PM – 11 PM'] }, { id: 'vip', cls: 'vip', name: 'VIP Floor', price: 'From $300', unit: '', badge: 'MOST POPULAR', feat: true, action: 'buy', feats: ['Everything in GA', 'Premium VIP floor — closest to the stage', 'Express entry lanes', 'VIP bar + lounge'] }, { id: 'box', cls: 'cabana', name: 'Box Suite', price: 'By enquiry', unit: '', badge: 'BY ENQUIRY', action: 'enquire', feats: ['Private box suite', 'Premium elevated stage views', 'Group bookings', 'The full mela, elevated'] }, ]; function Tickets({ onEnquire }) { return (
Pricing subject to increase!

Get In

Lock in the lowest price the festival will ever be.

{TIERS.map((t) => (
{t.badge && {t.badge}}
{t.name}
{t.price}{t.unit && {t.unit}}
{t.feats.map((f, i) => (
{f}
))} {t.action === 'buy' ? ( Buy {t.name}
Secure checkout · opens Ticketmaster
) : ( )}
))}
Tickets are sold through Ticketmaster, our official ticketing partner — beware resellers. Group and accessibility options available at checkout. All Ticket Options
); } window.Tickets = Tickets;