{"id":14970945,"url":"https://github.com/staticmania/keep-react","last_synced_at":"2025-05-13T23:06:44.371Z","repository":{"id":190964907,"uuid":"671482793","full_name":"StaticMania/keep-react","owner":"StaticMania","description":"Keep React is an open-source component library built on Tailwind CSS and React.js. It provides a versatile set of pre-designed UI components to build modern web applications.","archived":false,"fork":false,"pushed_at":"2025-01-02T10:23:32.000Z","size":5985,"stargazers_count":1409,"open_issues_count":1,"forks_count":118,"subscribers_count":15,"default_branch":"main","last_synced_at":"2025-04-10T00:14:12.277Z","etag":null,"topics":["component-library","components","design-systems","keep-react","react","reactjs","tailwindcss","typescript"],"latest_commit_sha":null,"homepage":"https://react.keepdesign.io","language":"TypeScript","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/StaticMania.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"License","code_of_conduct":"CODE_OF_CONDUCT.md","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":"2023-07-27T12:22:25.000Z","updated_at":"2025-04-09T17:32:25.000Z","dependencies_parsed_at":"2023-11-12T11:25:44.713Z","dependency_job_id":"d76253ba-39ba-431c-a4a2-7b2ecc75a2ab","html_url":"https://github.com/StaticMania/keep-react","commit_stats":{"total_commits":81,"total_committers":16,"mean_commits":5.0625,"dds":0.5555555555555556,"last_synced_commit":"6b72cfd9a51ad06ef347936ab7917ecd3dedf6bc"},"previous_names":["staticmania/keep-design-docs"],"tags_count":10,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StaticMania%2Fkeep-react","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StaticMania%2Fkeep-react/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StaticMania%2Fkeep-react/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StaticMania%2Fkeep-react/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/StaticMania","download_url":"https://codeload.github.com/StaticMania/keep-react/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248131315,"owners_count":21052819,"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":["component-library","components","design-systems","keep-react","react","reactjs","tailwindcss","typescript"],"created_at":"2024-09-24T13:44:24.060Z","updated_at":"2025-04-10T00:14:17.540Z","avatar_url":"https://github.com/StaticMania.png","language":"TypeScript","readme":"# KEEP REACT\n\nKeep React is an open-source component library built on Tailwind CSS and React.js. It provides a versatile set of pre-designed UI components that enable developers to streamline the creation of modern, responsive, and visually appealing web applications.\n\n![Keep React](https://images.prismic.io/staticmania/468819ab-dcc8-4393-85b2-b93913eee369_For+Github.png?auto=compress,format)\n\n## Table of Contents\n\n- [KEEP REACT](#keep-react)\n  - [Table of Contents](#table-of-contents)\n  - [Installation](#installation)\n    - [Vite React Application](#vite-react-application)\n    - [Next JS Application](#next-js-application)\n  - [usage](#usage)\n  - [Components](#components)\n  - [Contributing](#contributing)\n  - [Figma](#figma)\n  - [License](#license)\n\n## Installation\n\n## Vite React Application\n\nSetting Up Keep React in Vite React Application\n\n`Step 1:` Create a Vite React Application\n\n```console\nnpm create vite@latest my-project -- --template react\ncd my-project\n```\n\n`Step 2:` Install Tailwind CSS\n\n```console\nnpm i autoprefixer postcss tailwindcss\nnpx tailwindcss init -p\n```\n\n`Step 3:` Install Keep React:\n\n```console\nnpm i keep-react phosphor-react\n```\n\nOr with Yarn\n\n```console\nyarn add keep-react phosphor-react\n```\n\nOr with Pnpm\n\n```console\npnpm add keep-react phosphor-react\n```\n\n`Step 4:` Go to the `tailwind.config.js` file and paste the\nfollowing code:\n\n```jsx\nimport { keepTheme } from 'keep-react/keepTheme'\n\nconst config = {\n  content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],\n  theme: {},\n}\n\nexport default keepTheme(config)\n```\n\n`Step 5:` Add Tailwind CSS to index.css File:\n\n```css\n@import 'keep-react/css';\n@tailwind base;\n@tailwind components;\n@tailwind utilities;\n```\n\n## Next JS Application\n\nYou can easily integrate `keep-react` into your Next.js application.\n\n`Step 1:` Install Next Js Application\n\n```console\nnpx create-next-app@latest\n```\n\nEnsure that you select `tailwindcss` as a dependency for your application during the setup.\n\n`Would you like to use Tailwind CSS? -- Yes`\n\n`Step 2:` Install Keep React\n\n```console\nnpm i keep-react phosphor-react\n```\n\nOr with Yarn\n\n```console\nyarn add keep-react phosphor-react\n```\n\nOr with Pnpm\n\n```console\npnpm add keep-react phosphor-react\n```\n\n`Step 3:` Go to the `tailwind.config.js` file and paste the\nfollowing code\n\n```js\nimport { keepTheme } from 'keep-react/keepTheme'\n\nconst config = {\n  content: ['./components/**/*.{js,ts,jsx,tsx,mdx}', './app/**/*.{js,ts,jsx,tsx,mdx}'],\n  theme: {},\n}\n\nexport default keepTheme(config)\n```\n\n`Step 4:` Add Tailwind CSS to `globals.css` File:\n\n```css\n@import 'keep-react/css';\n@tailwind base;\n@tailwind components;\n@tailwind utilities;\n```\n\nCongratulations! You have successfully installed the Keep React. Now you can import any component from keep-react and use it in your project.\n\n## usage\n\n```jsx\nimport { Button } from 'keep-react'\nconst App = () =\u003e {\n  return \u003cButton\u003eButton\u003c/Button\u003e\n}\nexport default App\n```\n\n## Components\n\nThe Keep React offers a wide range of components to build your user interfaces. For detailed usage and examples of each component, refer to our [component documentation](https://react.keepdesign.io/docs/getting-started/installation).\n\n## Contributing\n\nIf you want to contribute to the Keep React, you can follow the [contributing guide](https://github.com/StaticMania/keep-react/blob/main/Contribute.md).\n\n## Contributors\n\nThis project exists thanks to all the people who contribute:\n\n\u003ca href=\"https://github.com/StaticMania/keep-react/graphs/contributors\"\u003e\n  \u003cimg src=\"https://contrib.rocks/image?repo=StaticMania/keep-react\"/\u003e\n\u003c/a\u003e\n\n## Figma\n\nIf you need access to Figma design files for the components, you can check out our website for more information:\n\n[Get access to the Figma design files](https://keepdesign.io)\n\n## License\n\nThe Keep-React name and logos are trademarks of StaticMania.\n\n[Read about the licensing terms](https://github.com/StaticMania/keep-react/blob/main/License)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstaticmania%2Fkeep-react","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstaticmania%2Fkeep-react","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstaticmania%2Fkeep-react/lists"}