GRV-Summit-Site/components/home/HeroGrantLine.tsx
“kirukib” 1a710aa3c6
Some checks are pending
Deploy to Cloudflare Workers (OpenNext) / deploy (push) Waiting to run
first commit + project setup
2026-05-20 11:57:21 +03:00

18 lines
431 B
TypeScript

"use client";
import { CyclingGrantAmount } from "@/components/grants/CyclingGrantAmount";
export function HeroGrantLine() {
return (
<span>
500+ attendees ·{" "}
<CyclingGrantAmount
className="inline-flex flex-row items-baseline gap-1"
valueClassName="font-medium text-foreground"
showCaption={false}
/>{" "}
grant funding · Skylight Hotel, Addis Ababa
</span>
);
}