GRV-Summit-Site/components/grants/GrantHeadline.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

17 lines
427 B
TypeScript

"use client";
import { CyclingGrantAmount } from "@/components/grants/CyclingGrantAmount";
/** Pitch / about headlines with rotating grant figures */
export function GrantHeadline({ className }: { className?: string }) {
return (
<span className={className}>
<CyclingGrantAmount
valueClassName="text-inherit"
className="inline"
/>{" "}
in non-dilutive grant funding
</span>
);
}