{"id":30495437,"url":"https://github.com/nayanrdeveloper/shadcn-extras","last_synced_at":"2025-08-25T00:17:36.079Z","repository":{"id":303013065,"uuid":"1014156817","full_name":"nayanrdeveloper/shadcn-extras","owner":"nayanrdeveloper","description":"A reusable, production-ready React UI component library with styled-components, Storybook, and TypeScript support.","archived":false,"fork":false,"pushed_at":"2025-08-22T17:02:28.000Z","size":227,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"dev","last_synced_at":"2025-08-22T18:53:50.057Z","etag":null,"topics":["ci-cd-pipeline","component-library","npm","open-source","react","storybook","styled-components","typescript","ui-components"],"latest_commit_sha":null,"homepage":"https://nayanrdeveloper.github.io/pixelcrate/","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/nayanrdeveloper.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","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,"zenodo":null}},"created_at":"2025-07-05T06:51:33.000Z","updated_at":"2025-08-22T17:02:32.000Z","dependencies_parsed_at":null,"dependency_job_id":"d0abfc48-8ad4-48f9-aa28-989d87d12b5d","html_url":"https://github.com/nayanrdeveloper/shadcn-extras","commit_stats":null,"previous_names":["nayanrdeveloper/pixelcrate","nayanrdeveloper/shadcn-extras"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/nayanrdeveloper/shadcn-extras","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nayanrdeveloper%2Fshadcn-extras","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nayanrdeveloper%2Fshadcn-extras/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nayanrdeveloper%2Fshadcn-extras/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nayanrdeveloper%2Fshadcn-extras/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nayanrdeveloper","download_url":"https://codeload.github.com/nayanrdeveloper/shadcn-extras/tar.gz/refs/heads/dev","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nayanrdeveloper%2Fshadcn-extras/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271983873,"owners_count":24853810,"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","status":"online","status_checked_at":"2025-08-24T02:00:11.135Z","response_time":111,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["ci-cd-pipeline","component-library","npm","open-source","react","storybook","styled-components","typescript","ui-components"],"created_at":"2025-08-25T00:17:35.005Z","updated_at":"2025-08-25T00:17:36.028Z","avatar_url":"https://github.com/nayanrdeveloper.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# shadcn-extras\n\n✨ Beautiful, animated UI components for React \u0026 Next.js, built with [Motion](https://motion.dev/) and [Tailwind CSS](https://tailwindcss.com/).  \nEasy to use. Customizable. Open Source.\n\n**Note:** This project is in active development — new components and improvements are added regularly.\n\n---\n\n## 🚀 Features\n\n- 🎨 Ready-to-use **animated UI components**\n- ⚡ Built with **Motion** for smooth animations\n- 🎯 **Tailwind CSS friendly** and easy to theme\n- 🔧 Works seamlessly with **shadcn/ui**\n- 📚 Detailed **documentation** \u0026 code examples\n- 🛠️ Extensible — copy, customize, and adapt\n\n---\n\n## 📖 Documentation\n\nFull documentation and examples are available at:  \n👉 [nayanrdeveloper.github.io/shadcn-extras/docs](https://nayanrdeveloper.github.io/shadcn-extras/docs/)\n\n---\n\n## 📦 Installation\n\n```bash\n# Using npm\nnpm install shadcn-extras\n\n# Or with pnpm\npnpm add shadcn-extras\n\n# Or with yarn\nyarn add shadcn-extras\n```\n\n### Requirements\n\n- React 18+\n- Tailwind CSS\n- [Motion](https://motion.dev/) (installed automatically via CLI or manually)\n\nIf you are already using **shadcn/ui**, you don’t need to create a `lib/utils.ts` file.  \nOtherwise, make sure to install helpers:\n\n```bash\nnpm install clsx tailwind-merge\n```\n\nand add `lib/utils.ts`:\n\n```ts\nimport { type ClassValue, clsx } from 'clsx';\nimport { twMerge } from 'tailwind-merge';\n\nexport function cn(...inputs: ClassValue[]) {\n  return twMerge(clsx(inputs));\n}\n```\n\n---\n\n## 🧩 Usage\n\nExample: Add a component via the CLI\n\n```bash\nnpx shadcn-extras add kpi-card\n```\n\nThen import it into your project:\n\n```tsx\nimport { KpiCard } from '@/components/shadcn-extras/kpi-card';\n\nexport default function Example() {\n  return \u003cKpiCard label='Revenue' value='$24.5k' trend='up' delta='+12%' /\u003e;\n}\n```\n\nCheck the [docs](https://nayanrdeveloper.github.io/shadcn-extras/docs/) for full examples.\n\n---\n\n## 🤝 Contributing\n\nWe welcome contributions!  \nPlease read our [Contributing Guide](./CONTRIBUTING.md) to learn how to set up the repo, add components, run lint/format, and submit PRs.\n\n---\n\n## 📜 License\n\nLicensed under the [MIT License](./LICENCE.md).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnayanrdeveloper%2Fshadcn-extras","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnayanrdeveloper%2Fshadcn-extras","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnayanrdeveloper%2Fshadcn-extras/lists"}