GRV-Summit-Site/content/faq.ts
“kirukib” 3693495dd0
Some checks are pending
Deploy to Cloudflare Workers (OpenNext) / deploy (push) Waiting to run
Add site-wide topography patterns and refine section styling.
Use mainwhite.svg on white sections with curvy green transitions into flat green bands, improve text and button contrast, and deploy via OpenNext on Cloudflare Workers.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-05-20 20:34:36 +03:00

51 lines
2.1 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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:
"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.",
},
];