import type { Metadata } from "next"; import { pageSeo } from "@/content/page-seo"; import { createPageMetadata } from "@/lib/seo"; import { Section } from "@/components/layout/Section"; import { InquiryForm } from "@/components/forms/InquiryForm"; import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card"; export const metadata: Metadata = createPageMetadata(pageSeo.sponsor); const tiers = [ { name: "Lead Sponsor", description: "Premier visibility across all summit touchpoints and keynote branding.", perks: ["Logo on all materials", "Keynote introduction", "VIP hospitality", "Speaking slot"], }, { name: "Gold Sponsor", description: "High-impact brand presence in exhibition and programming.", perks: ["Exhibition branding", "Panel sponsorship", "Digital promotion", "4 VIP passes"], }, { name: "Supporting Sponsor", description: "Align your brand with Ethiopia's innovation mission.", perks: ["Website listing", "Program mention", "2 passes", "Newsletter feature"], }, ]; export default function SponsorPage() { return ( <>

Sponsor

Partner with Ethiopia's flagship innovation summit

Support the Ethiopian Diaspora Trust Fund's mission to foster tech-enabled innovation. Sponsorship connects your organization with investors, founders, and leaders across agriculture, healthcare, and education.

{tiers.map((tier) => ( {tier.name} {tier.description}
    {tier.perks.map((p) => (
  • ยท {p}
  • ))}
))}

Sponsorship inquiry

Share your goals and we'll tailor a partnership package for your organization.

); }