MCPcopy
hub / github.com/cursor/community-plugins / HeroTitle

Function HeroTitle

apps/cursor/src/components/hero-title.tsx:8–24  ·  view source on GitHub ↗
({ totalUsers }: { totalUsers: number })

Source from the content-addressed store, hash-verified

6const linkClass = "border-b border-dashed border-input text-foreground";
7
8export 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&rsquo;s trending.
21 </p>
22 </div>
23 );
24}

Callers

nothing calls this directly

Calls 1

formatCountFunction · 0.90

Tested by

no test coverage detected