({
contributorsByRepo = {},
standalone = false,
}: ExampleListSectionProps)
| 83 | ); |
| 84 | |
| 85 | const ExampleListSection = ({ |
| 86 | contributorsByRepo = {}, |
| 87 | standalone = false, |
| 88 | }: ExampleListSectionProps) => { |
| 89 | if (standalone) { |
| 90 | return ( |
| 91 | <div className="max-w-6xl mx-auto"> |
| 92 | <InnerGrid contributorsByRepo={contributorsByRepo} /> |
| 93 | </div> |
| 94 | ); |
| 95 | } |
| 96 | |
| 97 | return ( |
| 98 | <section className="px-6 pb-12 -mt-36"> |
| 99 | <div className="max-w-6xl mx-auto"> |
| 100 | <h2 className="text-3xl font-semibold mb-6">Who uses AGENTS.md?</h2> |
| 101 | <InnerGrid contributorsByRepo={contributorsByRepo} /> |
| 102 | </div> |
| 103 | </section> |
| 104 | ); |
| 105 | }; |
| 106 | |
| 107 | interface ExampleCardPropsExtended { |
| 108 | repo: RepoCardProps; |
nothing calls this directly
no outgoing calls
no test coverage detected