{"id":24956717,"url":"https://github.com/adelpro/line-craft","last_synced_at":"2026-04-15T05:32:06.599Z","repository":{"id":275458007,"uuid":"926137584","full_name":"adelpro/line-craft","owner":"adelpro","description":"lineCraft is a curated, hand-made collection of NextJS and React UI components, custom hooks, and utilities all built with TypeScript and styled using Tailwind CSS. Designed for performance and ease-of-use.","archived":false,"fork":false,"pushed_at":"2025-03-05T21:51:05.000Z","size":59,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-28T20:44:09.493Z","etag":null,"topics":["copy-paste","design","hook","nextjs","reactjs","typescript","ui"],"latest_commit_sha":null,"homepage":"","language":null,"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/adelpro.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":"2025-02-02T16:38:35.000Z","updated_at":"2025-03-05T21:51:08.000Z","dependencies_parsed_at":"2025-02-02T17:34:29.346Z","dependency_job_id":"2d90573c-6c88-4e61-8680-4cc508b8a2ed","html_url":"https://github.com/adelpro/line-craft","commit_stats":null,"previous_names":["adelpro/line-craft"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/adelpro/line-craft","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adelpro%2Fline-craft","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adelpro%2Fline-craft/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adelpro%2Fline-craft/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adelpro%2Fline-craft/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/adelpro","download_url":"https://codeload.github.com/adelpro/line-craft/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adelpro%2Fline-craft/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31828531,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-14T18:05:02.291Z","status":"online","status_checked_at":"2026-04-15T02:00:06.175Z","response_time":63,"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":["copy-paste","design","hook","nextjs","reactjs","typescript","ui"],"created_at":"2025-02-03T06:40:53.322Z","updated_at":"2026-04-15T05:32:06.582Z","avatar_url":"https://github.com/adelpro.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# lineCraft\n\nlineCraft is a curated, hand-made collection of NextJS and React UI components, custom hooks, and utilities all built with TypeScript and styled using Tailwind CSS. Designed for performance and ease-of-use, lineCraft follows SOLID principles and modern best practices to empower developers with ready-to-use, lightweight building blocks for your web applications. No installation required, simply copy \u0026 paste the code into your project.\n\n## Features\n\n- **Modular Components**: Reusable, customizable React components.\n- **Custom Hooks**: Enhance your workflow with utility hooks.\n- **TypeScript Support**: Strongly typed for reliability and clarity.\n- **Tailwind CSS Styling**: Pre-styled components using Tailwind CSS for easy customization.\n- **SOLID Principles**: Built to be scalable, maintainable, and testable.\n- **Zero Dependencies**: No external libraries required.\n- **Responsive Design**: Optimized for all screen sizes.\n- **Accessible**: Components follow ARIA and accessibility best practices.\n- **Lightweight**: Minimal footprint to keep your project fast.\n\n## Installation\n\nNo installation required! Simply copy and paste the components, hooks, or utilities directly into your project.\n\n## Getting Started\n\n1. Browse the collection of components and hooks.\n2. Copy the code snippet you need.\n3. Paste it into your React project.\n4. Customize and use as required.\n\n## Usage Examples\n\n### Button Component\n\n```tsx\nimport React from 'react';\n\ninterface ButtonProps {\n  label: string;\n  onClick: () =\u003e void;\n}\n\nexport const Button: React.FC\u003cButtonProps\u003e = ({ label, onClick }) =\u003e (\n  \u003cbutton onClick={onClick} className=\"px-4 py-2 bg-blue-500 text-white rounded\"\u003e\n    {label}\n  \u003c/button\u003e\n);\n```\n\n### Custom Hook: useToggle\n\n```tsx\nimport { useState } from 'react';\n\nexport const useToggle = (initialState: boolean = false): [boolean, () =\u003e void] =\u003e {\n  const [state, setState] = useState(initialState);\n  const toggle = () =\u003e setState(prev =\u003e !prev);\n  return [state, toggle];\n};\n```\n\n## Contributing\n\nContributions are welcome! Feel free to open issues or submit pull requests.\n\n## License\n\nThis project is licensed under the MIT License.\n\n## Contact\n\nFor any inquiries, reach out via [contact@adelpro.us.kg](mailto:contact@adelpro.us.kg).\n\n## Acknowledgements\n\nSpecial thanks to the open-source community for inspiration and resources.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fadelpro%2Fline-craft","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fadelpro%2Fline-craft","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fadelpro%2Fline-craft/lists"}