Some checks are pending
Deploy to Cloudflare Workers (OpenNext) / deploy (push) Waiting to run
52 lines
1.9 KiB
TypeScript
52 lines
1.9 KiB
TypeScript
export const exhibitCopy = {
|
||
eyebrow: "Exhibit",
|
||
headline: "Reserve a booth & showcase your products",
|
||
subheadline:
|
||
"Acquire exhibition space in the Great Rift Valley Innovation Summit hall. Promote your brand, demo products, and connect with investors, startups, and partners across Ethiopia's innovation ecosystem.",
|
||
};
|
||
|
||
export const boothPackages = [
|
||
{
|
||
id: "standard",
|
||
name: "Standard booth",
|
||
size: "3m × 3m",
|
||
description: "Table, chairs, power outlet, and listing in the exhibitor directory.",
|
||
highlights: ["Hall placement", "1 company listing", "2 staff badges"],
|
||
},
|
||
{
|
||
id: "corner",
|
||
name: "Corner booth",
|
||
size: "3m × 3m (corner)",
|
||
description: "Higher foot traffic with two open sides for demos and product displays.",
|
||
highlights: ["Corner visibility", "Enhanced signage", "3 staff badges"],
|
||
},
|
||
{
|
||
id: "premium",
|
||
name: "Premium booth",
|
||
size: "6m × 3m",
|
||
description: "Larger footprint for live demos, screens, and multi-product showcases.",
|
||
highlights: ["Priority placement", "Program mention", "5 staff badges", "Wi‑Fi add-on"],
|
||
},
|
||
] as const;
|
||
|
||
export const boothSizes = [
|
||
{ value: "standard-3x3", label: "Standard — 3m × 3m" },
|
||
{ value: "corner-3x3", label: "Corner — 3m × 3m" },
|
||
{ value: "premium-6x3", label: "Premium — 6m × 3m" },
|
||
{ value: "custom", label: "Custom / not sure yet" },
|
||
] as const;
|
||
|
||
export const exhibitorSectors = [
|
||
"Agriculture & food",
|
||
"Healthcare & life sciences",
|
||
"Education & edtech",
|
||
"Technology & software",
|
||
"Finance & fintech",
|
||
"Energy & climate",
|
||
"Government & NGO",
|
||
"Other",
|
||
] as const;
|
||
|
||
export const exhibitorConsentLabel =
|
||
"I agree that the information I provide may be collected and used by the Ethiopian Diaspora Trust Fund to process my booth request and contact me about exhibition opportunities, in line with the summit privacy policy.";
|