{"id":24064116,"url":"https://github.com/ronaldleung1/hillshacks-v","last_synced_at":"2026-05-18T15:31:47.177Z","repository":{"id":36976396,"uuid":"428800921","full_name":"ronaldleung1/hillshacks-v","owner":"ronaldleung1","description":"🏔 Website for hillsHacks V","archived":false,"fork":false,"pushed_at":"2023-11-01T04:48:52.000Z","size":20221,"stargazers_count":5,"open_issues_count":1,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-30T16:52:15.520Z","etag":null,"topics":["hackathon","hillshacks","nextjs","theme-ui"],"latest_commit_sha":null,"homepage":"https://hillshacks.com","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ronaldleung1.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2021-11-16T20:17:59.000Z","updated_at":"2023-03-18T15:39:49.000Z","dependencies_parsed_at":"2025-07-30T16:12:59.141Z","dependency_job_id":"bae16fd4-f91f-4a55-9c3a-1004b860637d","html_url":"https://github.com/ronaldleung1/hillshacks-v","commit_stats":null,"previous_names":["ronaldleung1/hillshacks-v"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ronaldleung1/hillshacks-v","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ronaldleung1%2Fhillshacks-v","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ronaldleung1%2Fhillshacks-v/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ronaldleung1%2Fhillshacks-v/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ronaldleung1%2Fhillshacks-v/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ronaldleung1","download_url":"https://codeload.github.com/ronaldleung1/hillshacks-v/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ronaldleung1%2Fhillshacks-v/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33182726,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-18T09:27:30.708Z","status":"ssl_error","status_checked_at":"2026-05-18T09:27:28.300Z","response_time":71,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["hackathon","hillshacks","nextjs","theme-ui"],"created_at":"2025-01-09T10:07:04.421Z","updated_at":"2026-05-18T15:31:47.160Z","avatar_url":"https://github.com/ronaldleung1.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# hillsHacks V\n\nThe source of the website powering hillsHack's fifth annual hackathon. Made with Next.js and Theme UI.\n\nSee the [source](https://github.com/googol88/hillshacks-iv) of last year's website\n\n[next.js]: https://nextjs.org\n[mdx]: https://mdxjs.com\n[theme ui]: https://theme-ui.com\n\n## Usage\n\n1. Import this repo to your coding environment of choice. Download it, `git clone`, or use the GitHub import on CodeSandbox (or repl.it, Glitch, etc).\n2. `yarn` to install dependencies.\n3. `yarn dev` to start your server.\n4. Start adding your own pages \u0026 components in their respective directories.\n\n## Configuration\n\n### Theme switcher\n\nThere’s an included example theme switcher component at `components/color-switcher.js`,\nwhich is included on every page through its inclusion in `pages/_app.js`.\nFeel free to change/remove it.\n\n### Custom theme\n\nBy default, a theme inspired by the [Hack Club Theme](https://theme.hackclub.com) is included.\nTo edit the theme, head to `lib/theme.js`.\n\n### Running at another port\n\nSuper easy: `yarn dev -p 5000`\n\n### Dependency updates\n\nThe included Dependabot configuration file means you’ll automatically get PRs\nevery Monday with dependency updates. Delete `.github/dependabot.yml` to\ndisable.\n\n### Meta tags\n\nThis template includes a `Meta` component for adding full meta tags.\nTo set the defaults, open `components/meta.js` \u0026 change the default props.\n\nIt’s included in `pages/_app.js` so all pages have the default tags without\nanything per-page, but due to the `key`s included on each tag, if you render\nthe component multiple times (such as once in `_app` \u0026 again on an invidual page),\nthe last instance of each tag will be used, with duplicates.\n\nIf you don’t set a `description` or `image`, the relevant tags for those fields\nwill be omitted.\n\nHere’s how you use `Meta` on a page:\n\n```js\nimport Meta from '../components/meta'\n\nconst AboutPage = () =\u003e (\n  \u003c\u003e\n    \u003cMeta\n      title=\"About\" // page title\n      description=\"About our nonprofit.\" // page description\n      image=\"https://yourdomain.com/special-card.png\" // large summary card image URL\n    /\u003e\n    {/* … */}\n  \u003c/\u003e\n)\n\nexport default Page\n```\n\n(The default props are included on the component instead of `_app.js` so you\ndon’t have to re-include all the props on each page.)\n\nYou can also pass children to `Meta` to quickly include custom tags inside the\n[Next.js `Head`](https://nextjs.org/docs/api-reference/next/head).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fronaldleung1%2Fhillshacks-v","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fronaldleung1%2Fhillshacks-v","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fronaldleung1%2Fhillshacks-v/lists"}