| 10 | }; |
| 11 | |
| 12 | interface RepoCardProps { |
| 13 | /** e.g. "openai/codex" */ |
| 14 | name: string; |
| 15 | /** Short 1-2 line summary */ |
| 16 | description: string; |
| 17 | /** Primary language */ |
| 18 | language: string; |
| 19 | } |
| 20 | |
| 21 | /** Hard-coded examples used for the marketing page. */ |
| 22 | const REPOS: RepoCardProps[] = [ |
nothing calls this directly
no outgoing calls
no test coverage detected