Some checks are pending
Deploy to Cloudflare Workers (OpenNext) / deploy (push) Waiting to run
62 lines
1.7 KiB
TypeScript
62 lines
1.7 KiB
TypeScript
export type ProgramDay = {
|
|
id: string;
|
|
date: string;
|
|
title: string;
|
|
description: string;
|
|
highlights: string[];
|
|
image?: string;
|
|
};
|
|
|
|
export const programDays: ProgramDay[] = [
|
|
{
|
|
id: "day-1",
|
|
date: "31 Jan 2025",
|
|
title: "Workshops & Panel Discussions",
|
|
description:
|
|
"Curated sessions offering valuable insights for innovators and professionals at every career stage—from newcomers to seasoned executives.",
|
|
highlights: [
|
|
"Unpacking Investment Barriers",
|
|
"Why Startups Disappear in Ethiopia",
|
|
"Sector deep-dives in Ag, Health, and Education",
|
|
],
|
|
image: "/branding/booth-mockup.png",
|
|
},
|
|
{
|
|
id: "day-2",
|
|
date: "01 Feb 2025",
|
|
title: "Exhibition & Pitch Finals",
|
|
description:
|
|
"Connect with investors, companies, and startups in the exhibitor hall. Watch finalists compete for Africa's largest non-dilutive grant pool.",
|
|
highlights: [
|
|
"Exhibitor hall networking",
|
|
"Great Rift Valley Pitch Competition finals",
|
|
"Keynotes and reflections",
|
|
],
|
|
image: "/branding/booth-mockup.png",
|
|
},
|
|
];
|
|
|
|
export const experiences = [
|
|
{
|
|
id: "workshops",
|
|
title: "Workshops & Panels",
|
|
description:
|
|
"Hands-on learning and expert panels across agriculture, healthcare, and education innovation.",
|
|
href: "/program",
|
|
},
|
|
{
|
|
id: "exhibition",
|
|
title: "Exhibitor Hall",
|
|
description:
|
|
"Connect companies and startups with emerging talent in Ethiopia's innovation ecosystem.",
|
|
href: "/exhibit",
|
|
},
|
|
{
|
|
id: "pitch",
|
|
title: "Pitch Competition",
|
|
description:
|
|
"$XXXK in non-dilutive grants — 10 companies will be selected from the most impactful early- and growth-stage ventures.",
|
|
href: "/pitch-competition",
|
|
},
|
|
];
|