{"id":48730801,"url":"https://github.com/zidvsd/clothora","last_synced_at":"2026-04-12T01:55:51.798Z","repository":{"id":315903804,"uuid":"1061215428","full_name":"zidvsd/clothora","owner":"zidvsd","description":"Frontend Clothing Store App","archived":false,"fork":false,"pushed_at":"2026-01-21T08:45:19.000Z","size":2210,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-12T01:55:50.783Z","etag":null,"topics":["framer-motion","html-to-image","keen-slider","lucide-react","nextjs","react","react-loading-skeleton","sonner","tailwindcss","typescript","zustand"],"latest_commit_sha":null,"homepage":"https://clothora-amber.vercel.app","language":"TypeScript","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/zidvsd.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-09-21T13:31:30.000Z","updated_at":"2026-03-10T11:48:09.000Z","dependencies_parsed_at":"2025-09-21T15:16:10.772Z","dependency_job_id":"7c886563-6000-42be-bd8e-7f45a96d5780","html_url":"https://github.com/zidvsd/clothora","commit_stats":null,"previous_names":["zidvsd/clothora"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/zidvsd/clothora","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zidvsd%2Fclothora","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zidvsd%2Fclothora/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zidvsd%2Fclothora/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zidvsd%2Fclothora/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zidvsd","download_url":"https://codeload.github.com/zidvsd/clothora/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zidvsd%2Fclothora/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31701641,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-11T21:17:31.016Z","status":"ssl_error","status_checked_at":"2026-04-11T21:17:24.556Z","response_time":54,"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":["framer-motion","html-to-image","keen-slider","lucide-react","nextjs","react","react-loading-skeleton","sonner","tailwindcss","typescript","zustand"],"created_at":"2026-04-12T01:55:51.165Z","updated_at":"2026-04-12T01:55:51.789Z","avatar_url":"https://github.com/zidvsd.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Clothora\n\n![version](https://img.shields.io/badge/version-0.1.0-blue)\n![next](https://img.shields.io/badge/Next.js-15.5.3-black)\n\nClothora is a minimal, modern clothing storefront built with Next.js, TypeScript and Tailwind CSS. It demonstrates a clean UI, smooth animations, and simple state management suitable for small e-commerce prototypes and design-focused storefronts.\n\n**Live demo:** https://clothora-amber.vercel.app/\n\n## Why this project is useful\n\n- **Design-focused starter:** Minimal UI and responsive layouts for quick prototyping.\n- **Modern stack:** Next.js 15, React 19, TypeScript 5 and Tailwind CSS 4.\n- **Small but complete:** Product lists, carousel, cart flows and toast notifications.\n- **Easy state:** Global state handled with `zustand` for a tiny, easy-to-follow store.\n\n## Key features\n\n- Product listing and collections (under `app/collections`)\n- Product detail pages and nested routing (dynamic routes in `app/collections/[slug]/[productId]`)\n- Responsive carousel using `keen-slider`\n- Loading skeletons with `react-loading-skeleton`\n- Toast notifications with `sonner`\n- Lightweight global state using `zustand`\n\n## Tech stack\n\n- Next.js 15 (App Router)\n- React 19\n- TypeScript 5\n- Tailwind CSS 4\n- Zustand for state management\n- Keen Slider, Lucide React, Sonner, html-to-image\n\n## Getting started\n\nPrerequisites\n\n- Node.js 18+ (tested with Node 18/20)\n- npm or yarn\n\nClone and run\n\n```bash\ngit clone \u003cyour-repo-url\u003e clothora\ncd clothora\nnpm install\n# or: yarn\n```\n\nDevelopment\n\n```bash\nnpm run dev\n# Open http://localhost:3000\n```\n\nBuild and production\n\n```bash\nnpm run build\nnpm start\n```\n\nLint\n\n```bash\nnpm run lint\n```\n\nNotes\n\n- The project uses Turbopack flags for `dev` and `build` (`--turbopack`). Remove these flags if you prefer the standard Next.js bundler or run into compatibility issues.\n- If you use a Node version manager, ensure your active Node version matches the prerequisites.\n\n## Project structure (overview)\n\n- `app/` — Next.js App Router pages and route groups (primary app code)\n- `components/` — Shared React components (carousel, product list, UI primitives)\n- `section/` — Page sections (home/hero/featured)\n- `lib/` — Utilities and animation helpers\n- `store/` — `zustand` stores (`useCartStore.ts`, `useProductsStore.ts`)\n- `public/` — Static assets and sample data\n\nExplore the `app/` directory to see how routes are organized and how components are composed.\n\n## Usage examples\n\nImport a component in a page (TypeScript / Next.js App Router example):\n\n```tsx\nimport ProductList from \"@/components/ProductList\";\n\nexport default function Page() {\n  return \u003cProductList /\u003e;\n}\n```\n\nProgrammatic cart update using the `useCartStore` (simplified):\n\n```ts\nimport useCartStore from \"@/store/useCartStore\";\n\nconst add = useCartStore((s) =\u003e s.addProduct);\nadd({ id: \"sku-123\", name: \"T-Shirt\", price: 29.99 });\n```\n\n## Where to get help\n\n- If this repo includes an active maintainer, open an issue.\n- For questions about the codebase, contact the repository owner or the original author: `rashidvisda@gmail.com`.\n\n## Contributing\n\nSee `CONTRIBUTING.md` for brief contribution pointers and a minimal workflow.\n\nPlease keep contributions focused and small: design improvements, accessibility, test coverage, or bug fixes are all welcome.\n\n## Maintainers\n\n- Original author / contact: `rashidvisda@gmail.com`\n\nIf you would like to become a contributor, open an issue or submit a PR and reference the changes you'd like to make.\n\n## Acknowledgements\n\n- Built as a small demo and design prototype inspired by modern e-commerce patterns.\n\n---\n\n_Generated and updated by project maintainer tooling._\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzidvsd%2Fclothora","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzidvsd%2Fclothora","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzidvsd%2Fclothora/lists"}