|
| 1 | +import { Anchor } from "@/app/conf/_design-system/anchor" |
| 2 | + |
| 3 | +import ArrowDownIcon from "@/app/conf/_design-system/pixelarticons/arrow-down.svg?svgr" |
| 4 | + |
| 5 | +export function PoweredByCommunity() { |
| 6 | + return ( |
| 7 | + <section className="gql-section"> |
| 8 | + <div className="gql-container typography-body-lg flex bg-pri-darker text-white max-lg:flex-col"> |
| 9 | + <div className="border-pri-light p-6 max-lg:border-b lg:border-r lg:p-16"> |
| 10 | + <h2 className="typography-h2 text-balance"> |
| 11 | + Powered by the community |
| 12 | + </h2> |
| 13 | + <p className="mt-8"> |
| 14 | + GraphQL is an ecosystem shaped by thousands of collaborating |
| 15 | + developers and companies around the world. From solo contributors to |
| 16 | + full-time maintainers, the GraphQL community builds libraries, runs |
| 17 | + meetups, funds innovation and helps move the technology forward. |
| 18 | + </p> |
| 19 | + </div> |
| 20 | + <div> |
| 21 | + <Anchor |
| 22 | + href="/community/tools-and-libraries" |
| 23 | + className="flex items-center justify-between gap-4 whitespace-pre border-b border-pri-light px-6 py-8 hover:bg-white/10 lg:h-1/3 lg:px-8 lg:pr-12 xl:gap-6" |
| 24 | + > |
| 25 | + Browse libraries |
| 26 | + <ArrowDownIcon className="size-10 -rotate-90 text-pri-light" /> |
| 27 | + </Anchor> |
| 28 | + <Anchor |
| 29 | + href="/community/events" |
| 30 | + className="flex items-center justify-between gap-4 whitespace-pre border-b border-pri-light px-6 py-8 hover:bg-white/10 lg:h-1/3 lg:px-8 lg:pr-12 xl:gap-6" |
| 31 | + > |
| 32 | + Explore events & meetups |
| 33 | + <ArrowDownIcon className="size-10 -rotate-90 text-pri-light" /> |
| 34 | + </Anchor> |
| 35 | + <Anchor |
| 36 | + href="/community/foundation" |
| 37 | + className="flex items-center justify-between gap-4 whitespace-pre px-6 py-8 hover:bg-white/10 lg:h-1/3 lg:px-8 lg:pr-12 xl:gap-6" |
| 38 | + > |
| 39 | + Learn about GraphQL Foundation |
| 40 | + <ArrowDownIcon className="size-10 -rotate-90 text-pri-light" /> |
| 41 | + </Anchor> |
| 42 | + </div> |
| 43 | + </div> |
| 44 | + </section> |
| 45 | + ) |
| 46 | +} |
0 commit comments