GRV-Summit-Site/components/home/PurposeBand.tsx
kirukib cb404ec079
Some checks failed
Deploy to Cloudflare Workers (OpenNext) / deploy (push) Has been cancelled
Align site colors with GRV brand book palette.
Centralize primary, secondary, tertiary, and neutral tokens and apply them across theme variables and UI components.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-04 14:45:22 +03:00

39 lines
1.7 KiB
TypeScript

import Image from "next/image";
import { Section } from "@/components/layout/Section";
import { TopoProseSurface } from "@/components/layout/TopoProseSurface";
import { PurposeGrantText } from "@/components/home/PurposeGrantText";
export function PurposeBand() {
return (
<Section id="about">
<div className="grid items-center gap-10 lg:grid-cols-2">
<TopoProseSurface>
<p className="text-xs font-semibold uppercase tracking-widest text-[#37a47a]">
About this summit
</p>
<h2 className="mt-3 text-3xl font-bold md:text-4xl">
A first-of-its-kind gathering for Ethiopia&apos;s innovators
</h2>
<p className="mt-4 text-[#5b5b5b] leading-relaxed">
The Great Rift Valley Innovation Summit, presented by the Ethiopian Diaspora Trust
Fund (EDTF), convenes entrepreneurs, investors, companies, startups, and jobseekers to
advance tech-enabled innovation in agriculture, healthcare, and education.
</p>
<p className="mt-4 text-[#5b5b5b] leading-relaxed">
Programming includes an exhibitor hall, workshops and panel discussions, and the
inaugural Great Rift Valley Pitch Competition<PurposeGrantText /> Ten companies will
be selected from the most impactful ventures.
</p>
</TopoProseSurface>
<div className="relative z-20 aspect-[4/3] overflow-hidden rounded-2xl">
<Image
src="/branding/booth-mockup.png"
alt="Summit exhibition floor"
fill
className="object-cover"
/>
</div>
</div>
</Section>
);
}