{"id":22064826,"url":"https://github.com/nazmul-nhb/prodigy-picks-client","last_synced_at":"2026-04-10T17:10:10.172Z","repository":{"id":253160760,"uuid":"842641110","full_name":"nazmul-nhb/prodigy-picks-client","owner":"nazmul-nhb","description":"The client-side application for Prodigy Picks, a full-stack e-commerce platform. This React-based front-end allows users to browse, search, filter, and sort products. Features include Firebase authentication, responsive design, and dynamic product ratings. Built using React.js, TypeScript, and styled with TailwindCSS.","archived":false,"fork":false,"pushed_at":"2024-08-21T12:56:52.000Z","size":1026,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-29T00:22:29.197Z","etag":null,"topics":["css","firebase-auth","react","reacthookform","reactjs","reactquery","tailwind","tanstack-query","tanstack-react-query","typescript"],"latest_commit_sha":null,"homepage":"https://prodigy-picks-nhb.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/nazmul-nhb.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":"2024-08-14T19:03:51.000Z","updated_at":"2024-08-21T12:56:55.000Z","dependencies_parsed_at":"2024-08-21T04:48:36.063Z","dependency_job_id":null,"html_url":"https://github.com/nazmul-nhb/prodigy-picks-client","commit_stats":null,"previous_names":["nazmul-nhb/prodigy-picks-client"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nazmul-nhb%2Fprodigy-picks-client","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nazmul-nhb%2Fprodigy-picks-client/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nazmul-nhb%2Fprodigy-picks-client/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nazmul-nhb%2Fprodigy-picks-client/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nazmul-nhb","download_url":"https://codeload.github.com/nazmul-nhb/prodigy-picks-client/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245144972,"owners_count":20568056,"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":["css","firebase-auth","react","reacthookform","reactjs","reactquery","tailwind","tanstack-query","tanstack-react-query","typescript"],"created_at":"2024-11-30T19:13:37.586Z","updated_at":"2025-12-30T23:29:25.459Z","avatar_url":"https://github.com/nazmul-nhb.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Prodigy Picks : : Eco Essentials\n\n## [Live Link](https://prodigy-picks-nhb.vercel.app)\n\n## Overview\n\nThe Prodigy Picks client is a single-page application (SPA) built with React.js and Vite for a full-stack e-commerce platform. The application provides functionalities for searching, filtering, sorting, and paginating products, as well as user authentication and cart operations.\n\n## Features\n\n- **Pagination**: Efficiently load and navigate through product pages.\n- **Searching**: Search for products by name.\n- **Categorization**: Filter products by brand name, category, and price range.\n- **Sorting**: Sort products by price (low to high, high to low), date added (newest first, oldest first) and ratings.\n- **Authentication**: Google and email/password authentication via Firebase.\n- **Cart Operations**: Add and remove products from the cart.\n\n## Run the Project Locally\n\n### Prerequisites\n\n- Node.js\n- npm or yarn\n\n### Setup\n\n1. **Clone the repository**:\n\n    ```bash\n    git clone https://github.com/nazmul-nhb/prodigy-picks-client.git\n    ```\n\n2. **Navigate to the project directory**:\n\n    ```bash\n    cd prodigy-picks-client\n    ```\n\n3. **Install dependencies**:\n\n    ```bash\n    npm install\n    ```\n\n    or, if you prefer yarn:\n\n    ```bash\n    yarn install\n    ```\n\n4. **Create a `.env.local` file** in the root directory of the project and add your environment variables.\n\n    ```env\n    VITE_FIREBASE_API_KEY=your-firebase-api-key\n    VITE_FIREBASE_AUTH_DOMAIN=your-firebase-auth-domain\n    VITE_FIREBASE_PROJECT_ID=your-firebase-project-id\n    VITE_FIREBASE_STORAGE_BUCKET=your-firebase-storage-bucket\n    VITE_FIREBASE_MESSAGING_SENDER_ID=your-firebase-messaging-sender-id\n    VITE_FIREBASE_APP_ID=your-firebase-app-id\n    ```\n\n5. **Start the development server**:\n\n    ```bash\n    npm run dev\n    ```\n\n    or, if you are using yarn:\n\n    ```bash\n    yarn dev\n    ```\n\n## Features Implementation\n\n### Pagination\n\n- Implemented to handle large sets of product data efficiently.\n- Provides navigation controls (Next, Previous) and page number indicators.\n\n### Searching\n\n- Allows users to search for products by name with real-time updates.\n\n### Categorization\n\n- Products can be filtered by brand name, category, and price range.\n- Supports multiple filters applied simultaneously.\n\n### Sorting\n\n- Users can sort products by price, date added and ratings.\n- Sorting options include:\n  - Price: Low to High, High to Low\n  - Date Added: Newest first\n  - Ratings: Low to High, High to Low\n\n### Authentication\n\n- Integrated Google Authentication using Firebase.\n- Implemented Email and Password Authentication using Firebase.\n\n### Cart Operations\n\n- Users can add and remove products from their cart.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnazmul-nhb%2Fprodigy-picks-client","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnazmul-nhb%2Fprodigy-picks-client","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnazmul-nhb%2Fprodigy-picks-client/lists"}