{"id":19210324,"url":"https://github.com/venushadilshan/dashee-react","last_synced_at":"2026-05-04T01:31:49.636Z","repository":{"id":143795741,"uuid":"466363423","full_name":"venushadilshan/dashee-react","owner":"venushadilshan","description":"A Dashboard System for React","archived":false,"fork":false,"pushed_at":"2022-03-10T12:32:11.000Z","size":626,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-14T01:04:20.330Z","etag":null,"topics":["admin-dashboard","admin-panel","dashboard","library","react","react-router","reactjs","tailwindcss"],"latest_commit_sha":null,"homepage":"dashee-react.vercel.app","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/venushadilshan.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":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-03-05T05:52:30.000Z","updated_at":"2022-03-11T07:26:12.000Z","dependencies_parsed_at":null,"dependency_job_id":"2e2dd6c6-e09f-44bf-a1bc-70cba42e04f9","html_url":"https://github.com/venushadilshan/dashee-react","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/venushadilshan/dashee-react","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/venushadilshan%2Fdashee-react","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/venushadilshan%2Fdashee-react/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/venushadilshan%2Fdashee-react/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/venushadilshan%2Fdashee-react/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/venushadilshan","download_url":"https://codeload.github.com/venushadilshan/dashee-react/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/venushadilshan%2Fdashee-react/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32591596,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-03T22:12:39.696Z","status":"ssl_error","status_checked_at":"2026-05-03T22:09:10.534Z","response_time":103,"last_error":"SSL_read: 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":["admin-dashboard","admin-panel","dashboard","library","react","react-router","reactjs","tailwindcss"],"created_at":"2024-11-09T13:35:43.142Z","updated_at":"2026-05-04T01:31:49.620Z","avatar_url":"https://github.com/venushadilshan.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Dashee: A Dashboard System for React\n\nDashee is a Dashboard component collection for your React Projects. \n### \u003ca href=\"https://dashee-react.vercel.app/\"\u003eDemo - Try it out \u003c/a\u003e\n## Take a look\n\n\u003cimg src=\"https://i.ibb.co/nBJGxSp/localhost-3000.png\" width=\"100%\"\u003e\n\n\n\n\n\u003cbr\u003e\n\n## What is inside? \n\nThis project is still under development. So new components will be added progressively. For now below components are available.\n\n- Sidebar Menu\n- Stat Cards\n- Bar Chart\n- Doughnut Chart\n- Header Bar\n- Tables\n\n\n## Dependencies\n- Tailwind CSS v3.0.23\n- React Router\n- Chart.js \n- React Icons\n- React Data Table Component\n\n## Customization \n\nYou can customize the dashboard by edtiting `App.js`. Currently all the relevant components are imported to the `App.js`. \n\nChild components are loaded into `Home.js`. It is the component uses to display all child components at the Home route. (`\\`)\n\nIf you want to do some changes for the content, then go to `Home.js` and do the customizations. \n\n### Example\nEdit `Home.js`\n\n        \u003cdiv className='flex flex-col w-full h-screen p-5 overflow-y-scroll'\u003e\n            \u003cHeaderBar /\u003e\n            \u003cdiv className='flex flex-row ml-5 mt-5 mb-5  font-bold'\u003e\u003ch1\u003eOverview\u003c/h1\u003e\u003c/div\u003e\n            \u003cdiv className='flex flex-row w-full flex-wrap justify-start'\u003e\n            \u003c!--Load your StatCards here. Max 3 --\u003e\n                \u003cStatCard/\u003e \n                \u003cStatCard /\u003e\n                \u003cStatCard /\u003e\n            \u003c/div\u003e\n            \u003cdiv className='flex flex-row ml-5 mt-5 font-bold ' \u003e\n                \u003ch1\u003eSales vs Returns\u003c/h1\u003e\u003c/div\u003e\n            \u003cdiv className='flex flex-row w-full'\u003e\n            \u003c!--Load your Charts here. You have to adjust the width of each chart component according to your layout --\u003e\n                \u003cBarGraph chartData={chartData} /\u003e\n                \u003cPieChart chartData={chartData} /\u003e\n            \u003c/div\u003e\n        \u003c/div\u003e \n\nChart data are loaded via state for the moment. You can use an API call to fetch data and load data to the chart. \n\n\n\nThank you.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvenushadilshan%2Fdashee-react","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvenushadilshan%2Fdashee-react","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvenushadilshan%2Fdashee-react/lists"}