Some checks failed
Deploy to Cloudflare Workers (OpenNext) / deploy (push) Has been cancelled
Add a bottom cut-out panel with larger winner cards (four visible), move summit dates to Feb 21–22 2027, and limit demo Antebas to letters so symbols render via DM Sans. Co-authored-by: Cursor <cursoragent@cursor.com>
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: "21 Feb 2027",
|
|
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: "22 Feb 2027",
|
|
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",
|
|
},
|
|
];
|