{"id":19030825,"url":"https://github.com/hackclub/toolbox","last_synced_at":"2026-06-15T01:37:59.128Z","repository":{"id":42476659,"uuid":"311473858","full_name":"hackclub/toolbox","owner":"hackclub","description":"🧰 Deals for Hack Clubbers.","archived":false,"fork":false,"pushed_at":"2026-06-04T14:36:23.000Z","size":16101,"stargazers_count":22,"open_issues_count":8,"forks_count":66,"subscribers_count":4,"default_branch":"main","last_synced_at":"2026-06-05T05:27:45.598Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://toolbox.hackclub.com","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hackclub.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2020-11-09T21:50:18.000Z","updated_at":"2026-05-30T10:29:54.000Z","dependencies_parsed_at":"2023-02-18T01:31:57.498Z","dependency_job_id":"70ad61bd-5afe-4fdb-abaa-4a5b66c6f694","html_url":"https://github.com/hackclub/toolbox","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/hackclub/toolbox","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hackclub%2Ftoolbox","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hackclub%2Ftoolbox/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hackclub%2Ftoolbox/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hackclub%2Ftoolbox/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hackclub","download_url":"https://codeload.github.com/hackclub/toolbox/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hackclub%2Ftoolbox/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34344440,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-14T02:00:07.365Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-08T21:19:44.757Z","updated_at":"2026-06-15T01:37:59.123Z","avatar_url":"https://github.com/hackclub.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n    \u003cimg width=\"192\" alt=\"Hack Club logo\" src=\"https://assets.hackclub.com/flag-standalone.svg\"\u003e\n\u003c/p\u003e\n\u003ch1 align=\"center\"\u003e\n    The new \u003ca href=\"https://hackclub.com/\"\u003eHack Club Toolbox\u003c/a\u003e!\n\u003c/h1\u003e\n\nDeals for Hack Clubbers—powered by [Next.js], [Theme UI] \u0026 [MDX].\n\n[next.js]: https://nextjs.org\n[mdx]: https://mdxjs.com\n[theme ui]: http://theme-ui.com\n\n## How do I add a card?\n\nAll the cards except for the current ones are stored in `manifest.js`. If you take a look at it, you'll notice it's in JSON:\n\n```js\nexport default [\n  {\n    category: 'Perks',\n    color: 'primary',\n    icon: 'bag',\n    items: [\n      {\n        name: 'Zoom Pro Meetings',\n        description: 'Run Zoom Pro meetings for free in your Hack Club',\n        icon: 'welcome',\n        external: false,\n        url: '/zoom.mdx',\n        forUseBy: 'clubbers'\n      },\n      ...\n    ]\n  },\n  ...\n]\n```\n\nTo add a card to an existing category, you simply add to the cards in the category, like so:\n\n```diff\nexport default [\n  {\n    category: 'Perks',\n    color: 'primary',\n    icon: 'bag',\n    items: [\n      {\n        name: 'Zoom Pro Meetings',\n        description: 'Run Zoom Pro meetings for free in your Hack Club',\n        icon: 'welcome',\n        external: false,\n        url: '/zoom.mdx',\n        forUseBy: 'clubbers'\n      },\n+     {\n+       name: 'Theme',\n+       description: \"Hack Club's theme, using Theme UI\",\n+       icon: 'grid',\n+       external: true,\n+       url: 'https://theme.hackclub.com',\n+       forUseBy: 'everyone'\n+     }\n    ]\n  },\n```\n\nTo add a new category, you'll follow a similar pattern at the bottom of the file:\n\n```diff\nexport default [\n  {\n    category: 'Perks',\n    color: 'primary',\n    icon: 'bag',\n    items: [\n      {\n        name: 'Zoom Pro Meetings',\n        description: 'Run Zoom Pro meetings for free in your Hack Club',\n        icon: 'welcome',\n        external: false,\n        url: '/zoom.mdx',\n        forUseBy: 'clubbers'\n      },\n    ]\n  },\n+ {\n+   category: '\u003cCategory name\u003e',\n+   color: '\u003cCategory color\u003e',\n+   icon: '\u003cCategory icon\u003e'\n+   items: [\n+     ...\n+   ]\n+ }\n]\n```\n\n_For `color` and `icon`, you can use [Hack Club's theme](https://theme.hackclub.com)._\n\nWhen you edit the file to make these changes, you'll be asked to make a pull request.\n\nLet us know if you have any questions (or find any issues) in the #leaders channel on [our Slack](https://hackclub.com/slack) or email clubs@hackclub.com\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhackclub%2Ftoolbox","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhackclub%2Ftoolbox","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhackclub%2Ftoolbox/lists"}