diff --git a/src/components/index-page/index.tsx b/src/components/index-page/index.tsx index 6acce722f4..4a9c67a052 100644 --- a/src/components/index-page/index.tsx +++ b/src/components/index-page/index.tsx @@ -10,6 +10,7 @@ import { WhoIsUsing } from "./who-is-using" import { HowItWorks } from "./how-it-works" import { ProvenSolution } from "./proven-solution" import { FivePillars } from "./five-pillars" +import { PoweredByCommunity } from "./powered-by-community" export function IndexPage() { return ( @@ -19,6 +20,7 @@ export function IndexPage() { +

A query language for your API

diff --git a/src/components/index-page/powered-by-community.tsx b/src/components/index-page/powered-by-community.tsx new file mode 100644 index 0000000000..0a75883f47 --- /dev/null +++ b/src/components/index-page/powered-by-community.tsx @@ -0,0 +1,46 @@ +import { Anchor } from "@/app/conf/_design-system/anchor" + +import ArrowDownIcon from "@/app/conf/_design-system/pixelarticons/arrow-down.svg?svgr" + +export function PoweredByCommunity() { + return ( +

+
+
+

+ Powered by the community +

+

+ GraphQL is an ecosystem shaped by thousands of collaborating + developers and companies around the world. From solo contributors to + full-time maintainers, the GraphQL community builds libraries, runs + meetups, funds innovation and helps move the technology forward. +

+
+
+ + Browse libraries + + + + Explore events & meetups + + + + Learn about GraphQL Foundation + + +
+
+
+ ) +}