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>
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 summit takes place 21–22 February 2027 at Skylight Hotel, Bole, Addis Ababa, Ethiopia.",
|
||
},
|
||
{
|
||
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:
|
||
"Use Tickets in the navigation (or the ticket cards on the home page) to purchase a pass. Use the Register button on the hero to apply for the pitch competition.",
|
||
},
|
||
];
|