({ totalUsers }: { totalUsers: number })
| 6 | const linkClass = "border-b border-dashed border-input text-foreground"; |
| 7 | |
| 8 | export function HeroTitle({ totalUsers }: { totalUsers: number }) { |
| 9 | return ( |
| 10 | <div className="mb-14 text-center"> |
| 11 | <h1 className="marketing-hero-title mx-auto mb-5 max-w-[980px] text-balance text-foreground"> |
| 12 | Extend Cursor with community plugins. |
| 13 | </h1> |
| 14 | |
| 15 | <p className="marketing-copy mx-auto max-w-[760px] text-balance"> |
| 16 | Discover and install plugins from{" "} |
| 17 | <Link href="/members" className={linkClass}> |
| 18 | {formatCount(totalUsers)}+ developers |
| 19 | </Link> |
| 20 | , ranked by what’s trending. |
| 21 | </p> |
| 22 | </div> |
| 23 | ); |
| 24 | } |
nothing calls this directly
no test coverage detected