{"id":21404633,"url":"https://github.com/awebcode/keep-react","last_synced_at":"2026-01-02T08:50:01.753Z","repository":{"id":234391114,"uuid":"717407878","full_name":"awebcode/keep-react","owner":"awebcode","description":null,"archived":false,"fork":false,"pushed_at":"2023-11-11T12:06:25.000Z","size":2038,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-01-23T03:33:19.787Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/awebcode.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}},"created_at":"2023-11-11T12:03:47.000Z","updated_at":"2024-04-17T16:00:27.000Z","dependencies_parsed_at":"2024-04-19T06:42:59.031Z","dependency_job_id":null,"html_url":"https://github.com/awebcode/keep-react","commit_stats":null,"previous_names":["awebcode/keep-react"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/awebcode%2Fkeep-react","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/awebcode%2Fkeep-react/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/awebcode%2Fkeep-react/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/awebcode%2Fkeep-react/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/awebcode","download_url":"https://codeload.github.com/awebcode/keep-react/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243902282,"owners_count":20366258,"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":[],"created_at":"2024-11-22T16:17:03.179Z","updated_at":"2026-01-02T08:50:01.716Z","avatar_url":"https://github.com/awebcode.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- [Installation](#installation)\n- [Usage](#usage)\n- [Components](#components)\n- [Contributing](#contributing)\n- [Figma](#figma)\n- [License](#license)\n\n## Installation\n\n### Vite React Application\n\nAfter creating a React application with Vite, follow these steps to\ninstall Keep React:\n\n`Step 1:` Install Tailwind CSS\n\n```console\nnpm i autoprefixer postcss tailwindcss\nnpx tailwindcss init -p\n```\n\n`Step 2:` Install Keep React:\n\n```console\nnpm i keep-react\n```\n\nOr with Yarn\n\n```console\nyarn add keep-react\n```\n\n`Step 3:` Go to the `tailwind.config.js` file and paste the\nfollowing code:\n\n```jsx\nimport keepPreset from \"keep-react/src/keep-preset.js\";\nexport default {\n  content: [\"node_modules/keep-react/**/*.{js,jsx,ts,tsx}\"],\n  presets: [keepPreset],\n}\n```\n\n`Step 4:` Add Tailwind CSS to index.css File:\n\n```css\n@import \"keep-react/src/main.min.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. Starting from Next.js version 13.4, the app router automatically installs Tailwind CSS, eliminating the need for a separate Tailwind CSS installation. If you have already installed Tailwind CSS as part of the Next.js application setup, you can proceed with Step 2. Otherwise, start with Step 1.\n\nAfter creating a Next JS application, follow these steps to\ninstall Keep React:\n\n`Step 1:` Install Tailwind CSS\n\n```console\nnpm i autoprefixer postcss tailwindcss\nnpx tailwindcss init -p\n```\n\n`Step 2:` Install Keep React\n\n```console\nnpm i keep-react\n```\n\nOr with yarn\n\n```console\nyarn add keep-react\n```\n\n`Step 3:` Go to the `tailwind.config.js` file and paste the\nfollowing code\n\n```js\nmodule.exports = {\n    content: [\"node_modules/keep-react/**/*.{js,jsx,ts,tsx}\"],\n    presets: [require(\"keep-react/src/keep-preset.js\")],\n};\n```\n\n`Step 4:` Add Tailwind CSS to globals.css File:\n\n```css\n@import \"keep-react/src/main.min.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\n'use client';\nimport { Button } from \"keep-react\";\n  const App = () =\u003e {\n    return (\n      \u003cButton size=\"md\"\u003eDefault\u003c/Button\u003e\n    )\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/Introduction).\n\n## Contributing\n\nIf you want to contribute to the Keep React, you can follow the [contributing guide](https://github.com/NextUix/blob/main/Contribute.md).\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/NextUix/blob/main/License)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fawebcode%2Fkeep-react","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fawebcode%2Fkeep-react","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fawebcode%2Fkeep-react/lists"}