Some checks are pending
Deploy to Cloudflare Workers (OpenNext) / deploy (push) Waiting to run
51 lines
2.1 KiB
TypeScript
51 lines
2.1 KiB
TypeScript
export type FaqItem = {
|
||
id: string;
|
||
question: string;
|
||
answer: string;
|
||
};
|
||
|
||
export const faqs: FaqItem[] = [
|
||
{
|
||
id: "what",
|
||
question: "What is the Great Rift Valley Innovation Summit?",
|
||
answer:
|
||
"A first-of-its-kind event presented by the Ethiopian Diaspora Trust Fund (EDTF) to foster tech-enabled innovation and entrepreneurship in agriculture, healthcare, and education—bringing together investors, companies, startups, and entrepreneurs.",
|
||
},
|
||
{
|
||
id: "when",
|
||
question: "When and where does the summit take place?",
|
||
answer:
|
||
"The inaugural summit was held 31 January – 1 February 2025 at Skylight Hotel, Bole, Addis Ababa, Ethiopia. Future edition dates will be announced on this site.",
|
||
},
|
||
{
|
||
id: "who",
|
||
question: "Who should attend?",
|
||
answer:
|
||
"Entrepreneurs, investors, corporate leaders, policymakers, students, and professionals interested in innovation across agriculture, health, and education in Ethiopia and the broader region.",
|
||
},
|
||
{
|
||
id: "pitch",
|
||
question: "How does the pitch competition work?",
|
||
answer:
|
||
"The Great Rift Valley Pitch Competition awards $XXXK USD in non-dilutive grant funding. Ten companies will be selected from early- and growth-stage ventures driving innovation in Education, Health, and Agriculture. Application details are on the Pitch Competition page.",
|
||
},
|
||
{
|
||
id: "exhibit",
|
||
question: "How can my company exhibit?",
|
||
answer:
|
||
"Visit the Exhibit page to learn about booth options and submit an exhibitor inquiry. Our team will follow up with packages and availability.",
|
||
},
|
||
{
|
||
id: "sponsor",
|
||
question: "Are sponsorship opportunities available?",
|
||
answer:
|
||
"Yes. We offer tiered sponsorship packages for organizations seeking brand visibility and strategic alignment with EDTF's innovation mission. See the Sponsor page or contact partnerships.",
|
||
},
|
||
{
|
||
id: "register",
|
||
question: "How do I register to attend?",
|
||
answer:
|
||
"Registration links will be published when the next edition opens. Use the Register button in the navigation or subscribe to updates via the newsletter form.",
|
||
},
|
||
];
|