Some checks are pending
Deploy to Cloudflare Workers (OpenNext) / deploy (push) Waiting to run
18 lines
431 B
TypeScript
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>
|
|
);
|
|
}
|