GRV-Summit-Site/components/home/PurposeGrantText.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

16 lines
368 B
TypeScript

"use client";
import { CyclingGrantAmount } from "@/components/grants/CyclingGrantAmount";
export function PurposeGrantText() {
return (
<span className="font-semibold text-foreground">
<CyclingGrantAmount
className="inline"
valueClassName="text-inherit font-semibold"
/>{" "}
in non-dilutive grant funding
</span>
);
}