Some checks are pending
Deploy to Cloudflare Workers (OpenNext) / deploy (push) Waiting to run
27 lines
655 B
TypeScript
27 lines
655 B
TypeScript
export const inquiryChannels = [
|
|
{
|
|
id: "sales",
|
|
label: "Registration & Tickets",
|
|
email: "info@grvsummit.com",
|
|
description: "Questions about attending the summit.",
|
|
},
|
|
{
|
|
id: "exhibit",
|
|
label: "Exhibitor Inquiries",
|
|
email: "exhibit@grvsummit.com",
|
|
description: "Booth reservations and exhibitor packages.",
|
|
},
|
|
{
|
|
id: "sponsor",
|
|
label: "Sponsorship",
|
|
email: "partnerships@grvsummit.com",
|
|
description: "Sponsor tiers and partnership opportunities.",
|
|
},
|
|
{
|
|
id: "press",
|
|
label: "Press & Media",
|
|
email: "media@grvsummit.com",
|
|
description: "Media accreditation and press kits.",
|
|
},
|
|
];
|