import { site } from "@/content/site"; import { Section } from "@/components/layout/Section"; import { TopoProseSurface } from "@/components/layout/TopoProseSurface"; import { CyclingGrantAmount } from "@/components/grants/CyclingGrantAmount"; export function StatsGrid() { return (

The future starts here

Powering Ethiopia's innovation leap forward

{site.stats.map((stat) => (
{stat.type === "cycling" ? ( ) : (

{stat.value}

)}

{stat.label}

))}
); }