{"id":18146545,"url":"https://github.com/aragon/ui","last_synced_at":"2025-04-05T04:11:54.339Z","repository":{"id":39285923,"uuid":"105753403","full_name":"aragon/ui","owner":"aragon","description":"🦚 UI kit for decentralized apps","archived":false,"fork":false,"pushed_at":"2023-03-08T16:42:27.000Z","size":68776,"stargazers_count":342,"open_issues_count":62,"forks_count":120,"subscribers_count":34,"default_branch":"master","last_synced_at":"2025-03-29T03:07:08.348Z","etag":null,"topics":["react","react-spring","styled-components","ui-kit","web3"],"latest_commit_sha":null,"homepage":"https://ui.aragon.org/","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/aragon.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","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}},"created_at":"2017-10-04T09:52:20.000Z","updated_at":"2025-01-05T12:13:21.000Z","dependencies_parsed_at":"2024-11-16T03:02:18.494Z","dependency_job_id":null,"html_url":"https://github.com/aragon/ui","commit_stats":null,"previous_names":[],"tags_count":102,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aragon%2Fui","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aragon%2Fui/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aragon%2Fui/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aragon%2Fui/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aragon","download_url":"https://codeload.github.com/aragon/ui/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247284951,"owners_count":20913704,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["react","react-spring","styled-components","ui-kit","web3"],"created_at":"2024-11-01T21:08:11.796Z","updated_at":"2025-04-05T04:11:54.323Z","avatar_url":"https://github.com/aragon.png","language":"JavaScript","readme":"\u003cp align=center\u003e\n  \u003cimg src=\"https://user-images.githubusercontent.com/36158/53582039-04dd2d00-3b7f-11e9-8460-803ed3b84cc6.png\" alt=\"aragonUI\"\u003e\n\u003c/p\u003e\n\n## Overview\n\naragonUI is a React library used to build user interfaces for Aragon and its related projects. It provides the components needed to build experiences that feel integrated with Aragon ecosystem, and can be used both client or server side.\n\nThe complete documentation can be found on the [aragonUI website](https://ui.aragon.org/).\n\n## Getting Started\n\nIf you are unfamiliar with aragonUI, we recommend you to start with the [getting started page](https://ui.aragon.org/getting-started/). If you only want to know how to add aragonUI to your project, have a look at the quick setup:\n\n### Quick setup\n\nInstall aragonUI alongside styled-components from npm:\n\n```sh\nnpm install --save @aragon/ui styled-components\n```\n\nCopy its assets into your public directory:\n\n```sh\nnpx copy-aragon-ui-assets ./public\n```\n\nWrap your app with the `Main` component:\n\n```jsx\nimport React from 'react'\nimport { Main } from '@aragon/ui'\n\nfunction App() {\n  return (\n    \u003cMain\u003e\n      \u003ch1\u003eHello aragonUI!\u003c/h1\u003e\n    \u003c/Main\u003e\n  )\n}\n```\n\n_Your project is now ready to use aragonUI. 💫_\n\nOpen https://ui.aragon.org/ to see the list of the available components and learn how to use them.\n\n### Assets\n\naragonUI require some assets (e.g. fonts) in order to work properly. These need to be copied where they can be accessed by the library, like the `public/` directory of a project using [Create React App](https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md#adding-assets-outside-of-the-module-system).\n\nCopy these assets using the provided `copy-aragon-ui-assets` command:\n\n```sh\nnpx copy-aragon-ui-assets ./public\n```\n\nBy default, it will create a directory named `aragon-ui` in the specified directory.\n\nThis emplacement is communicated to the library through the `\u003cMain\u003e` component. The default path is `./aragon-ui/`, but you can change it using the `assetsUrl` prop:\n\n```jsx\nimport { Main } from '@aragon/ui'\n\nconst App = () =\u003e (\n  \u003cMain assetsUrl=\"http://example.com/aragon-ui-assets/\"\u003e\n    \u003ch1\u003eHello aragonUI!\u003c/h1\u003e\n  \u003c/Main\u003e\n)\n```\n\nYou may also want to add it as a build step in your project, so that aragonUI can be upgraded without having to worry about this.\n\n```json\n\"scripts\": {\n  \"sync-assets\": \"copy-aragon-ui-assets ./public\",\n  \"build\": \"npm run sync-assets \u0026\u0026 react-scripts build\",\n  \"start\": \"npm run sync-assets \u0026\u0026 react-scripts start\"\n}\n```\n\nSee `copy-aragon-ui-assets -h` for more information.\n\n## Build and Develop\n\nPlease have a look at [CONTRIBUTING.md](CONTRIBUTING.md).\n\n## Projects using aragonUI\n\n- [Aragon client](https://github.com/aragon/aragon) and [core apps](https://github.com/aragon/aragon-apps)\n- [Autark’s Open Enterprise](https://www.autark.xyz/apps)\n- [1Hive’s Dandelion apps](https://github.com/1Hive/dandelion-template)\n- [Aragon Black’s Fundraising](https://fundraising.aragon.black/)\n- [pando](https://github.com/pandonetwork/pando)\n- [P2P Models Wiki](https://github.com/P2PModels/wiki)\n- [Auction App for Cyber Foundation](https://github.com/cybercongress/aragon-auction-app)\n- [1Hive’s Apiary](https://github.com/1Hive/apiary)\n- [Uniswap Aragon App](https://github.com/empowerthedao/uniswap-aragon-app)\n- [Compound Aragon App](https://github.com/empowerthedao/compound-aragon-app)\n- [Aragon Parliament](https://github.com/PeterMPhillips/aragon-parliament)\n- [Aragon Market](https://github.com/proofoftom/aragon-market)\n\n## License\n\nMIT, see [LICENSE](LICENSE).\n","funding_links":[],"categories":["JavaScript"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faragon%2Fui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faragon%2Fui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faragon%2Fui/lists"}