├── .gitignore ├── README.md ├── backend ├── .env.test ├── config │ ├── db.js │ └── envConfig.js ├── controllers │ ├── Category.js │ ├── HomeProducts.js │ ├── Orders.js │ ├── PaymentController.js │ ├── Product.js │ └── usersController.js ├── index.js ├── models │ ├── Category.js │ ├── OrderModel.js │ ├── ProductModel.js │ ├── Reviews.js │ └── User.js ├── package-lock.json ├── package.json ├── routes │ ├── categoryRoutes.js │ ├── orderRoutes.js │ ├── payment.js │ ├── productRoutes.js │ └── userRoutes.js ├── services │ ├── Authorization.js │ └── authServices.js └── validations │ ├── categoryValidatons.js │ ├── productValidations.js │ ├── ratingValidations.js │ └── userValidations.js └── client ├── README.md ├── package-lock.json ├── package.json ├── postcss.config.js ├── public ├── favicon.ico ├── images │ ├── 018a6fd0-1d53-4e9c-ade2-e9a6eed6f0b9.jpeg │ ├── 1b4b9482-85bc-4239-85ab-2bb5951040e6.jpeg │ ├── 2b390e09-e653-4fac-80a8-91afd117f3ef.jpeg │ ├── 2d802340-0701-488c-b745-3c789a67232d.jpeg │ ├── 35d8d4de-a611-4cbe-86e3-a5b386cd97fe.jpeg │ ├── 376776c3-75f1-462e-a515-5192f2af37a0.jpeg │ ├── 3e59bc5f-2f13-4b73-b35f-2dc34282709e.png │ ├── 404abba7-7267-4840-a8af-d2bb38ff7756.jpeg │ ├── 50e3d2b0-5c3d-4fd7-a136-f5836f31d238.jpeg │ ├── 561bc0cf-0bdb-49f0-9322-dd4323a652dd.jpeg │ ├── 56f0da91-6ffe-4197-8d51-edfac928cbfd.jpeg │ ├── 5cfa4a23-3efa-4cf5-8b5a-874c72421a8e.jpeg │ ├── 6240b512-0727-49aa-93ac-600f9fb339ff.jpeg │ ├── 63e80e34-4770-4998-9380-6496d7181220.jpeg │ ├── 65a3415e-c346-4f93-b8f8-e13b320bd59c.jpeg │ ├── 6912c05c-af3a-43d7-8454-ba3e41ddcba4.jpeg │ ├── 6aafd570-4e1d-44ba-9267-63851bb2d720.jpeg │ ├── 6ef642de-7d37-4ea5-b534-07c7fe940178.jpeg │ ├── 7c2e52d0-c64f-47d0-8b92-4403c06a8310.jpeg │ ├── 7d8f8336-4912-4876-b220-eb5fa65eeff8.jpeg │ ├── 848fd40d-9c24-4eef-ac97-4b728a1a5203.jpeg │ ├── 87cfe58c-005c-465a-9bc8-2f60e8a3d916.jpeg │ ├── 9050dfe4-74fc-4418-92cb-6c80f529efdc.jpeg │ ├── 925d96c5-3637-4e73-9796-805290c3907c.png │ ├── 940f57c7-a7df-4145-a719-e842b28e52c0.jpeg │ ├── 995c488d-d10b-46db-b467-c75c5a373844.jpeg │ ├── a26f55a5-9ae4-4adc-a2dc-7ff3c2963d7b.jpeg │ ├── aa892619-232a-429d-959d-684d5c2a5c81.png │ ├── b14fd045-b3c5-4547-984b-2995848be8aa.jpeg │ ├── b330b6dd-97f8-42ed-945c-6a14ac8bf580.jpeg │ ├── b9566437-fdfd-45d4-9496-51d9b2314b05.jpeg │ ├── b96ca1b4-c166-41ca-b07a-2cf7fae840ed.png │ ├── bf966d8b-528e-474d-b7f9-7c1ed137c30b.jpeg │ ├── c06c20c1-e698-473a-8640-5705e207bca1.jpeg │ ├── c180133a-8b16-4d2f-adfe-bf564dcbaa42.jpeg │ ├── c62356e4-dd38-4903-b195-94a7fd5eb197.jpeg │ ├── c9a50eca-735a-4a77-aa85-b64664b99cad.jpeg │ ├── da4e4279-96eb-47b6-9831-8d0ec8f10b41.jpeg │ ├── dec45575-f231-488a-ad8b-8d153aa814ae.jpeg │ ├── eb1abae8-773a-46d2-a9ba-c3f1a7ff295b.jpeg │ ├── eb35f13a-907a-4189-98fd-75a5567d82e9.jpeg │ ├── fa2bfd05-a298-4a01-bce6-092697a57a55.jpeg │ ├── fb4f6848-942c-4b60-89c4-ec76d2d5651b.jpeg │ └── slider │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ └── 5.jpg ├── index.html ├── logo.svg ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── App.js ├── assets │ └── images │ │ └── header.jpg ├── components │ ├── AdminNav.js │ ├── Colors.js │ ├── DetailsList.js │ ├── ImagesPreview.js │ ├── Pagination.js │ ├── ReviewForm.js │ ├── ScreenHeader.js │ ├── Sidebar.js │ ├── SizesList.js │ ├── Spinner.js │ ├── home │ │ ├── AccountList.js │ │ ├── Categories.js │ │ ├── DetailsCard.js │ │ ├── DetailsImage.js │ │ ├── Header.js │ │ ├── HomeProduct.js │ │ ├── Nav.js │ │ ├── ProductCard.js │ │ ├── ProductLoader.js │ │ ├── ProductSkeleton.js │ │ ├── Quantity.js │ │ ├── Search.js │ │ └── Slider.js │ └── skeleton │ │ ├── Animate.js │ │ ├── Circle.js │ │ ├── Skeleton.js │ │ ├── Text.js │ │ └── Thumbnail.js ├── hooks │ └── Form.js ├── index.css ├── index.js ├── reportWebVitals.js ├── routes │ ├── Private.js │ ├── Public.js │ ├── Routing.js │ ├── UserAuthRoute.js │ └── UserRoute.js ├── screens │ ├── auth │ │ └── AdminLogin.js │ ├── dashboard │ │ ├── Categories.js │ │ ├── CreateCategory.js │ │ ├── CreateProduct.js │ │ ├── EditProduct.js │ │ ├── OrderDetails.js │ │ ├── Orders.js │ │ ├── Products.js │ │ ├── UpdateCategory.js │ │ └── Wrapper.js │ ├── home │ │ ├── Cart.js │ │ ├── CatProducts.js │ │ ├── Home.js │ │ ├── Product.js │ │ ├── SearchProducts.js │ │ └── auth │ │ │ ├── Login.js │ │ │ └── Register.js │ └── users │ │ ├── Dashboard.js │ │ ├── UserOrderDetails.js │ │ └── UserOrders.js ├── store │ ├── index.js │ ├── reducers │ │ ├── authReducer.js │ │ ├── cartReducer.js │ │ └── globalReducer.js │ └── services │ │ ├── authService.js │ │ ├── categoryService.js │ │ ├── homeProducts.js │ │ ├── orderService.js │ │ ├── paymentService.js │ │ ├── productService.js │ │ └── userOrdersService.js ├── styles │ ├── buttons.css │ ├── form.css │ ├── header.css │ ├── nav.css │ ├── styles.css │ └── table.css └── utils │ ├── ShowError.js │ └── discount.js └── tailwind.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/README.md -------------------------------------------------------------------------------- /backend/.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/backend/.env.test -------------------------------------------------------------------------------- /backend/config/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/backend/config/db.js -------------------------------------------------------------------------------- /backend/config/envConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/backend/config/envConfig.js -------------------------------------------------------------------------------- /backend/controllers/Category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/backend/controllers/Category.js -------------------------------------------------------------------------------- /backend/controllers/HomeProducts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/backend/controllers/HomeProducts.js -------------------------------------------------------------------------------- /backend/controllers/Orders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/backend/controllers/Orders.js -------------------------------------------------------------------------------- /backend/controllers/PaymentController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/backend/controllers/PaymentController.js -------------------------------------------------------------------------------- /backend/controllers/Product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/backend/controllers/Product.js -------------------------------------------------------------------------------- /backend/controllers/usersController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/backend/controllers/usersController.js -------------------------------------------------------------------------------- /backend/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/backend/index.js -------------------------------------------------------------------------------- /backend/models/Category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/backend/models/Category.js -------------------------------------------------------------------------------- /backend/models/OrderModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/backend/models/OrderModel.js -------------------------------------------------------------------------------- /backend/models/ProductModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/backend/models/ProductModel.js -------------------------------------------------------------------------------- /backend/models/Reviews.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/backend/models/Reviews.js -------------------------------------------------------------------------------- /backend/models/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/backend/models/User.js -------------------------------------------------------------------------------- /backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/backend/package-lock.json -------------------------------------------------------------------------------- /backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/backend/package.json -------------------------------------------------------------------------------- /backend/routes/categoryRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/backend/routes/categoryRoutes.js -------------------------------------------------------------------------------- /backend/routes/orderRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/backend/routes/orderRoutes.js -------------------------------------------------------------------------------- /backend/routes/payment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/backend/routes/payment.js -------------------------------------------------------------------------------- /backend/routes/productRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/backend/routes/productRoutes.js -------------------------------------------------------------------------------- /backend/routes/userRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/backend/routes/userRoutes.js -------------------------------------------------------------------------------- /backend/services/Authorization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/backend/services/Authorization.js -------------------------------------------------------------------------------- /backend/services/authServices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/backend/services/authServices.js -------------------------------------------------------------------------------- /backend/validations/categoryValidatons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/backend/validations/categoryValidatons.js -------------------------------------------------------------------------------- /backend/validations/productValidations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/backend/validations/productValidations.js -------------------------------------------------------------------------------- /backend/validations/ratingValidations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/backend/validations/ratingValidations.js -------------------------------------------------------------------------------- /backend/validations/userValidations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/backend/validations/userValidations.js -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/README.md -------------------------------------------------------------------------------- /client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/package-lock.json -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/package.json -------------------------------------------------------------------------------- /client/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/postcss.config.js -------------------------------------------------------------------------------- /client/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/public/favicon.ico -------------------------------------------------------------------------------- /client/public/images/018a6fd0-1d53-4e9c-ade2-e9a6eed6f0b9.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/public/images/018a6fd0-1d53-4e9c-ade2-e9a6eed6f0b9.jpeg -------------------------------------------------------------------------------- /client/public/images/1b4b9482-85bc-4239-85ab-2bb5951040e6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/public/images/1b4b9482-85bc-4239-85ab-2bb5951040e6.jpeg -------------------------------------------------------------------------------- /client/public/images/2b390e09-e653-4fac-80a8-91afd117f3ef.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/public/images/2b390e09-e653-4fac-80a8-91afd117f3ef.jpeg -------------------------------------------------------------------------------- /client/public/images/2d802340-0701-488c-b745-3c789a67232d.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/public/images/2d802340-0701-488c-b745-3c789a67232d.jpeg -------------------------------------------------------------------------------- /client/public/images/35d8d4de-a611-4cbe-86e3-a5b386cd97fe.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/public/images/35d8d4de-a611-4cbe-86e3-a5b386cd97fe.jpeg -------------------------------------------------------------------------------- /client/public/images/376776c3-75f1-462e-a515-5192f2af37a0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/public/images/376776c3-75f1-462e-a515-5192f2af37a0.jpeg -------------------------------------------------------------------------------- /client/public/images/3e59bc5f-2f13-4b73-b35f-2dc34282709e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/public/images/3e59bc5f-2f13-4b73-b35f-2dc34282709e.png -------------------------------------------------------------------------------- /client/public/images/404abba7-7267-4840-a8af-d2bb38ff7756.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/public/images/404abba7-7267-4840-a8af-d2bb38ff7756.jpeg -------------------------------------------------------------------------------- /client/public/images/50e3d2b0-5c3d-4fd7-a136-f5836f31d238.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/public/images/50e3d2b0-5c3d-4fd7-a136-f5836f31d238.jpeg -------------------------------------------------------------------------------- /client/public/images/561bc0cf-0bdb-49f0-9322-dd4323a652dd.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/public/images/561bc0cf-0bdb-49f0-9322-dd4323a652dd.jpeg -------------------------------------------------------------------------------- /client/public/images/56f0da91-6ffe-4197-8d51-edfac928cbfd.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/public/images/56f0da91-6ffe-4197-8d51-edfac928cbfd.jpeg -------------------------------------------------------------------------------- /client/public/images/5cfa4a23-3efa-4cf5-8b5a-874c72421a8e.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/public/images/5cfa4a23-3efa-4cf5-8b5a-874c72421a8e.jpeg -------------------------------------------------------------------------------- /client/public/images/6240b512-0727-49aa-93ac-600f9fb339ff.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/public/images/6240b512-0727-49aa-93ac-600f9fb339ff.jpeg -------------------------------------------------------------------------------- /client/public/images/63e80e34-4770-4998-9380-6496d7181220.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/public/images/63e80e34-4770-4998-9380-6496d7181220.jpeg -------------------------------------------------------------------------------- /client/public/images/65a3415e-c346-4f93-b8f8-e13b320bd59c.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/public/images/65a3415e-c346-4f93-b8f8-e13b320bd59c.jpeg -------------------------------------------------------------------------------- /client/public/images/6912c05c-af3a-43d7-8454-ba3e41ddcba4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/public/images/6912c05c-af3a-43d7-8454-ba3e41ddcba4.jpeg -------------------------------------------------------------------------------- /client/public/images/6aafd570-4e1d-44ba-9267-63851bb2d720.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/public/images/6aafd570-4e1d-44ba-9267-63851bb2d720.jpeg -------------------------------------------------------------------------------- /client/public/images/6ef642de-7d37-4ea5-b534-07c7fe940178.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/public/images/6ef642de-7d37-4ea5-b534-07c7fe940178.jpeg -------------------------------------------------------------------------------- /client/public/images/7c2e52d0-c64f-47d0-8b92-4403c06a8310.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/public/images/7c2e52d0-c64f-47d0-8b92-4403c06a8310.jpeg -------------------------------------------------------------------------------- /client/public/images/7d8f8336-4912-4876-b220-eb5fa65eeff8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/public/images/7d8f8336-4912-4876-b220-eb5fa65eeff8.jpeg -------------------------------------------------------------------------------- /client/public/images/848fd40d-9c24-4eef-ac97-4b728a1a5203.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/public/images/848fd40d-9c24-4eef-ac97-4b728a1a5203.jpeg -------------------------------------------------------------------------------- /client/public/images/87cfe58c-005c-465a-9bc8-2f60e8a3d916.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/public/images/87cfe58c-005c-465a-9bc8-2f60e8a3d916.jpeg -------------------------------------------------------------------------------- /client/public/images/9050dfe4-74fc-4418-92cb-6c80f529efdc.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/public/images/9050dfe4-74fc-4418-92cb-6c80f529efdc.jpeg -------------------------------------------------------------------------------- /client/public/images/925d96c5-3637-4e73-9796-805290c3907c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/public/images/925d96c5-3637-4e73-9796-805290c3907c.png -------------------------------------------------------------------------------- /client/public/images/940f57c7-a7df-4145-a719-e842b28e52c0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/public/images/940f57c7-a7df-4145-a719-e842b28e52c0.jpeg -------------------------------------------------------------------------------- /client/public/images/995c488d-d10b-46db-b467-c75c5a373844.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/public/images/995c488d-d10b-46db-b467-c75c5a373844.jpeg -------------------------------------------------------------------------------- /client/public/images/a26f55a5-9ae4-4adc-a2dc-7ff3c2963d7b.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/public/images/a26f55a5-9ae4-4adc-a2dc-7ff3c2963d7b.jpeg -------------------------------------------------------------------------------- /client/public/images/aa892619-232a-429d-959d-684d5c2a5c81.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/public/images/aa892619-232a-429d-959d-684d5c2a5c81.png -------------------------------------------------------------------------------- /client/public/images/b14fd045-b3c5-4547-984b-2995848be8aa.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/public/images/b14fd045-b3c5-4547-984b-2995848be8aa.jpeg -------------------------------------------------------------------------------- /client/public/images/b330b6dd-97f8-42ed-945c-6a14ac8bf580.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/public/images/b330b6dd-97f8-42ed-945c-6a14ac8bf580.jpeg -------------------------------------------------------------------------------- /client/public/images/b9566437-fdfd-45d4-9496-51d9b2314b05.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/public/images/b9566437-fdfd-45d4-9496-51d9b2314b05.jpeg -------------------------------------------------------------------------------- /client/public/images/b96ca1b4-c166-41ca-b07a-2cf7fae840ed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/public/images/b96ca1b4-c166-41ca-b07a-2cf7fae840ed.png -------------------------------------------------------------------------------- /client/public/images/bf966d8b-528e-474d-b7f9-7c1ed137c30b.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/public/images/bf966d8b-528e-474d-b7f9-7c1ed137c30b.jpeg -------------------------------------------------------------------------------- /client/public/images/c06c20c1-e698-473a-8640-5705e207bca1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/public/images/c06c20c1-e698-473a-8640-5705e207bca1.jpeg -------------------------------------------------------------------------------- /client/public/images/c180133a-8b16-4d2f-adfe-bf564dcbaa42.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/public/images/c180133a-8b16-4d2f-adfe-bf564dcbaa42.jpeg -------------------------------------------------------------------------------- /client/public/images/c62356e4-dd38-4903-b195-94a7fd5eb197.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/public/images/c62356e4-dd38-4903-b195-94a7fd5eb197.jpeg -------------------------------------------------------------------------------- /client/public/images/c9a50eca-735a-4a77-aa85-b64664b99cad.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/public/images/c9a50eca-735a-4a77-aa85-b64664b99cad.jpeg -------------------------------------------------------------------------------- /client/public/images/da4e4279-96eb-47b6-9831-8d0ec8f10b41.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/public/images/da4e4279-96eb-47b6-9831-8d0ec8f10b41.jpeg -------------------------------------------------------------------------------- /client/public/images/dec45575-f231-488a-ad8b-8d153aa814ae.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/public/images/dec45575-f231-488a-ad8b-8d153aa814ae.jpeg -------------------------------------------------------------------------------- /client/public/images/eb1abae8-773a-46d2-a9ba-c3f1a7ff295b.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/public/images/eb1abae8-773a-46d2-a9ba-c3f1a7ff295b.jpeg -------------------------------------------------------------------------------- /client/public/images/eb35f13a-907a-4189-98fd-75a5567d82e9.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/public/images/eb35f13a-907a-4189-98fd-75a5567d82e9.jpeg -------------------------------------------------------------------------------- /client/public/images/fa2bfd05-a298-4a01-bce6-092697a57a55.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/public/images/fa2bfd05-a298-4a01-bce6-092697a57a55.jpeg -------------------------------------------------------------------------------- /client/public/images/fb4f6848-942c-4b60-89c4-ec76d2d5651b.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/public/images/fb4f6848-942c-4b60-89c4-ec76d2d5651b.jpeg -------------------------------------------------------------------------------- /client/public/images/slider/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/public/images/slider/1.jpg -------------------------------------------------------------------------------- /client/public/images/slider/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/public/images/slider/2.jpg -------------------------------------------------------------------------------- /client/public/images/slider/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/public/images/slider/3.jpg -------------------------------------------------------------------------------- /client/public/images/slider/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/public/images/slider/4.jpg -------------------------------------------------------------------------------- /client/public/images/slider/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/public/images/slider/5.jpg -------------------------------------------------------------------------------- /client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/public/index.html -------------------------------------------------------------------------------- /client/public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/public/logo.svg -------------------------------------------------------------------------------- /client/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/public/logo192.png -------------------------------------------------------------------------------- /client/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/public/logo512.png -------------------------------------------------------------------------------- /client/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/public/manifest.json -------------------------------------------------------------------------------- /client/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/public/robots.txt -------------------------------------------------------------------------------- /client/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/App.js -------------------------------------------------------------------------------- /client/src/assets/images/header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/assets/images/header.jpg -------------------------------------------------------------------------------- /client/src/components/AdminNav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/components/AdminNav.js -------------------------------------------------------------------------------- /client/src/components/Colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/components/Colors.js -------------------------------------------------------------------------------- /client/src/components/DetailsList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/components/DetailsList.js -------------------------------------------------------------------------------- /client/src/components/ImagesPreview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/components/ImagesPreview.js -------------------------------------------------------------------------------- /client/src/components/Pagination.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/components/Pagination.js -------------------------------------------------------------------------------- /client/src/components/ReviewForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/components/ReviewForm.js -------------------------------------------------------------------------------- /client/src/components/ScreenHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/components/ScreenHeader.js -------------------------------------------------------------------------------- /client/src/components/Sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/components/Sidebar.js -------------------------------------------------------------------------------- /client/src/components/SizesList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/components/SizesList.js -------------------------------------------------------------------------------- /client/src/components/Spinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/components/Spinner.js -------------------------------------------------------------------------------- /client/src/components/home/AccountList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/components/home/AccountList.js -------------------------------------------------------------------------------- /client/src/components/home/Categories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/components/home/Categories.js -------------------------------------------------------------------------------- /client/src/components/home/DetailsCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/components/home/DetailsCard.js -------------------------------------------------------------------------------- /client/src/components/home/DetailsImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/components/home/DetailsImage.js -------------------------------------------------------------------------------- /client/src/components/home/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/components/home/Header.js -------------------------------------------------------------------------------- /client/src/components/home/HomeProduct.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/components/home/HomeProduct.js -------------------------------------------------------------------------------- /client/src/components/home/Nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/components/home/Nav.js -------------------------------------------------------------------------------- /client/src/components/home/ProductCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/components/home/ProductCard.js -------------------------------------------------------------------------------- /client/src/components/home/ProductLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/components/home/ProductLoader.js -------------------------------------------------------------------------------- /client/src/components/home/ProductSkeleton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/components/home/ProductSkeleton.js -------------------------------------------------------------------------------- /client/src/components/home/Quantity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/components/home/Quantity.js -------------------------------------------------------------------------------- /client/src/components/home/Search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/components/home/Search.js -------------------------------------------------------------------------------- /client/src/components/home/Slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/components/home/Slider.js -------------------------------------------------------------------------------- /client/src/components/skeleton/Animate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/components/skeleton/Animate.js -------------------------------------------------------------------------------- /client/src/components/skeleton/Circle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/components/skeleton/Circle.js -------------------------------------------------------------------------------- /client/src/components/skeleton/Skeleton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/components/skeleton/Skeleton.js -------------------------------------------------------------------------------- /client/src/components/skeleton/Text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/components/skeleton/Text.js -------------------------------------------------------------------------------- /client/src/components/skeleton/Thumbnail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/components/skeleton/Thumbnail.js -------------------------------------------------------------------------------- /client/src/hooks/Form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/hooks/Form.js -------------------------------------------------------------------------------- /client/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/index.css -------------------------------------------------------------------------------- /client/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/index.js -------------------------------------------------------------------------------- /client/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/reportWebVitals.js -------------------------------------------------------------------------------- /client/src/routes/Private.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/routes/Private.js -------------------------------------------------------------------------------- /client/src/routes/Public.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/routes/Public.js -------------------------------------------------------------------------------- /client/src/routes/Routing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/routes/Routing.js -------------------------------------------------------------------------------- /client/src/routes/UserAuthRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/routes/UserAuthRoute.js -------------------------------------------------------------------------------- /client/src/routes/UserRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/routes/UserRoute.js -------------------------------------------------------------------------------- /client/src/screens/auth/AdminLogin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/screens/auth/AdminLogin.js -------------------------------------------------------------------------------- /client/src/screens/dashboard/Categories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/screens/dashboard/Categories.js -------------------------------------------------------------------------------- /client/src/screens/dashboard/CreateCategory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/screens/dashboard/CreateCategory.js -------------------------------------------------------------------------------- /client/src/screens/dashboard/CreateProduct.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/screens/dashboard/CreateProduct.js -------------------------------------------------------------------------------- /client/src/screens/dashboard/EditProduct.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/screens/dashboard/EditProduct.js -------------------------------------------------------------------------------- /client/src/screens/dashboard/OrderDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/screens/dashboard/OrderDetails.js -------------------------------------------------------------------------------- /client/src/screens/dashboard/Orders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/screens/dashboard/Orders.js -------------------------------------------------------------------------------- /client/src/screens/dashboard/Products.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/screens/dashboard/Products.js -------------------------------------------------------------------------------- /client/src/screens/dashboard/UpdateCategory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/screens/dashboard/UpdateCategory.js -------------------------------------------------------------------------------- /client/src/screens/dashboard/Wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/screens/dashboard/Wrapper.js -------------------------------------------------------------------------------- /client/src/screens/home/Cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/screens/home/Cart.js -------------------------------------------------------------------------------- /client/src/screens/home/CatProducts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/screens/home/CatProducts.js -------------------------------------------------------------------------------- /client/src/screens/home/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/screens/home/Home.js -------------------------------------------------------------------------------- /client/src/screens/home/Product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/screens/home/Product.js -------------------------------------------------------------------------------- /client/src/screens/home/SearchProducts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/screens/home/SearchProducts.js -------------------------------------------------------------------------------- /client/src/screens/home/auth/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/screens/home/auth/Login.js -------------------------------------------------------------------------------- /client/src/screens/home/auth/Register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/screens/home/auth/Register.js -------------------------------------------------------------------------------- /client/src/screens/users/Dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/screens/users/Dashboard.js -------------------------------------------------------------------------------- /client/src/screens/users/UserOrderDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/screens/users/UserOrderDetails.js -------------------------------------------------------------------------------- /client/src/screens/users/UserOrders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/screens/users/UserOrders.js -------------------------------------------------------------------------------- /client/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/store/index.js -------------------------------------------------------------------------------- /client/src/store/reducers/authReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/store/reducers/authReducer.js -------------------------------------------------------------------------------- /client/src/store/reducers/cartReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/store/reducers/cartReducer.js -------------------------------------------------------------------------------- /client/src/store/reducers/globalReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/store/reducers/globalReducer.js -------------------------------------------------------------------------------- /client/src/store/services/authService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/store/services/authService.js -------------------------------------------------------------------------------- /client/src/store/services/categoryService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/store/services/categoryService.js -------------------------------------------------------------------------------- /client/src/store/services/homeProducts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/store/services/homeProducts.js -------------------------------------------------------------------------------- /client/src/store/services/orderService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/store/services/orderService.js -------------------------------------------------------------------------------- /client/src/store/services/paymentService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/store/services/paymentService.js -------------------------------------------------------------------------------- /client/src/store/services/productService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/store/services/productService.js -------------------------------------------------------------------------------- /client/src/store/services/userOrdersService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/store/services/userOrdersService.js -------------------------------------------------------------------------------- /client/src/styles/buttons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/styles/buttons.css -------------------------------------------------------------------------------- /client/src/styles/form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/styles/form.css -------------------------------------------------------------------------------- /client/src/styles/header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/styles/header.css -------------------------------------------------------------------------------- /client/src/styles/nav.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/styles/nav.css -------------------------------------------------------------------------------- /client/src/styles/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/styles/styles.css -------------------------------------------------------------------------------- /client/src/styles/table.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/styles/table.css -------------------------------------------------------------------------------- /client/src/utils/ShowError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/utils/ShowError.js -------------------------------------------------------------------------------- /client/src/utils/discount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/src/utils/discount.js -------------------------------------------------------------------------------- /client/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakilkhan12/chawkbazar-eCommerce/HEAD/client/tailwind.config.js --------------------------------------------------------------------------------