Some checks are pending
Deploy to Cloudflare Workers (OpenNext) / deploy (push) Waiting to run
32 lines
987 B
TypeScript
32 lines
987 B
TypeScript
export const site = {
|
||
name: "Great Rift Valley Innovation Summit",
|
||
shortName: "GRV Summit",
|
||
tagline:
|
||
"Ethiopia's premier gathering for tech-enabled innovation in agriculture, healthcare, and education.",
|
||
presentedBy: "Ethiopian Diaspora Trust Fund (EDTF)",
|
||
dates: {
|
||
label: "31 Jan – 01 Feb 2025",
|
||
start: "2025-01-31",
|
||
end: "2025-02-01",
|
||
},
|
||
venue: {
|
||
name: "Skylight Hotel",
|
||
address: "Bole, Addis Ababa, Ethiopia",
|
||
mapsUrl: "https://maps.google.com/?q=Skylight+Hotel+Addis+Ababa",
|
||
lat: 8.9806,
|
||
lng: 38.7578,
|
||
},
|
||
links: {
|
||
ticketsUrl: "/payment",
|
||
pitchApplyUrl: "/pitch-competition",
|
||
legacySite: "https://grvsummit.com/",
|
||
calendarIcs: "/calendar",
|
||
},
|
||
stats: [
|
||
{ type: "static", value: "500+", label: "Attendees" },
|
||
{ type: "cycling", label: "Grant funding" },
|
||
{ type: "static", value: "10", label: "Companies selected" },
|
||
{ type: "static", value: "3", label: "Innovation sectors" },
|
||
],
|
||
} as const;
|