{"id":28861171,"url":"https://github.com/jawed86/quickcart-ecommerce","last_synced_at":"2026-05-04T01:34:00.464Z","repository":{"id":299644558,"uuid":"1003160844","full_name":"jawed86/quickcart-ecommerce","owner":"jawed86","description":"A modern React-based e-commerce web app with cart, search, filters, discounts \u0026 responsive UI.","archived":false,"fork":false,"pushed_at":"2025-06-17T15:31:30.000Z","size":92,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-06-17T15:45:48.144Z","etag":null,"topics":["bootstrap","ecommerce-website","material-ui","reactjs","responsive-ui","shopping-cart","vite"],"latest_commit_sha":null,"homepage":"https://quickcart-ecommerce-one.vercel.app","language":"JavaScript","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/jawed86.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,"zenodo":null}},"created_at":"2025-06-16T18:06:43.000Z","updated_at":"2025-06-17T15:42:06.000Z","dependencies_parsed_at":"2025-06-17T15:56:06.547Z","dependency_job_id":null,"html_url":"https://github.com/jawed86/quickcart-ecommerce","commit_stats":null,"previous_names":["jawed86/quickcart-ecommerce"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jawed86/quickcart-ecommerce","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jawed86%2Fquickcart-ecommerce","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jawed86%2Fquickcart-ecommerce/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jawed86%2Fquickcart-ecommerce/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jawed86%2Fquickcart-ecommerce/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jawed86","download_url":"https://codeload.github.com/jawed86/quickcart-ecommerce/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jawed86%2Fquickcart-ecommerce/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32591601,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-03T22:12:39.696Z","status":"ssl_error","status_checked_at":"2026-05-03T22:09:10.534Z","response_time":103,"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":["bootstrap","ecommerce-website","material-ui","reactjs","responsive-ui","shopping-cart","vite"],"created_at":"2025-06-20T05:05:18.203Z","updated_at":"2026-05-04T01:34:00.458Z","avatar_url":"https://github.com/jawed86.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# QuickCart – Modern E-Commerce Web App 🛒\n\n[Live Demo 🚀](https://quickcart-ecommerce-one.vercel.app/)\n\nQuickCart is a responsive and dynamic e-commerce website built using **React**, **Vite**, **Material-UI**, and **Bootstrap 5**. It features real-world functionality such as product search, filtering, detailed views, cart management, and user feedback — designed to demonstrate real-world frontend development skills, making it a strong addition to any portfolio or production-ready store.\n\n---\n\n## 🔥 Features\n\n* 🏍️ Product browsing with category, brand, and rating filters\n* 🧠 Intelligent recommendations and similar items\n* 🔍 Search bar with keyword-based filtering\n* 🛒 Shopping cart with quantity control\n* 💸 Discount calculation and pricing breakdown\n* 📜 Responsive design for desktop \u0026 mobile\n* 🔔 Snackbar alerts on cart updates\n* 📢 Rotating ad banners for promotions\n* ⚡ Page scroll resets on route change\n* 🧩 Cart data persists on page refresh using localStorage\n---\n\n## 🛠️ Tech Stack\n\n* **Frontend:** React, Vite\n* **Styling:** Material-UI, Bootstrap 5, Custom CSS\n* **State Management:** React Context API\n* **Routing:** React Router v7+\n* **Notifications:** Notistack\n* **Deployment:** Vercel\n\n---\n\n## 🚀 Getting Started\n\nClone the repo and install dependencies:\n\n```bash\ngit clone https://github.com/YOUR_USERNAME/quickcart.git\ncd quickcart\nnpm install\nnpm run dev\n```\n\nTo build and preview production locally:\n\n```bash\nnpm run build\nnpm run preview\n```\n\n---\n\n## 📀 Folder Structure\n\n```\nquickcart/\n├── public/\n│   └── screenshots/             # UI screenshots for documentation\n│\n├── src/\n│   ├── appRoutes/              # Centralized routing definitions\n│   ├── components/             # Reusable UI components (advertisement Banner, Footer, etc.)\n│   ├── context/                # Context API for state management\n│   ├── others/                 # SnackBar, EmptyCart, etc.\n│   ├── pages/                  # Page-level components (Home, Cart, Navbar, DetailPage, etc.)\n│   ├── utils/                  # Utility functions (localStorage helpers, Data.js etc.)\n│   ├── App.jsx                 # Root component\n│   ├── main.jsx                # Entry point\n│   └── index.css               # Global styles\n│\n├── .gitignore\n├── index.html\n├── package.json\n├── package-lock.json\n├── vite.config.js\n├── eslint.config.js\n└── README.md\n```\n\n---\n\n## 📸 Screenshots\n\n### 🏠 Homepage\n![Homepage](public/screenshots/home.png)\n\n### 🔍 Search Page\n![Search Page](public/screenshots/Search%20Page.png)\n\n### 🧾 Cart Page\n![Cart Page](public/screenshots/Cart%20page.png)\n\n### 🧩 Detail Page\n![Detail Page](public/screenshots/Detail%20Page.png)\n\n### 📌 Navbar\n![Navbar 1](public/screenshots/navbar1.png)\n![Navbar 2](public/screenshots/navbar2.png)\n\n### 🔄 Related Items\n![Related Item](public/screenshots/Related%20Item.png)\n\n\n---\n\n## 🤝 Acknowledgements\n\nThis project was built as part of my portfolio to demonstrate proficiency in React-based frontend development, UI/UX, and responsive e-commerce interfaces.\n\n---\n\n## 🔗 License\n\nThis project is open-source and available under the [MIT License](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjawed86%2Fquickcart-ecommerce","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjawed86%2Fquickcart-ecommerce","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjawed86%2Fquickcart-ecommerce/lists"}