├── README.md ├── backend ├── .gitignore ├── app.js ├── config │ └── database.js ├── controllers │ ├── orderController.js │ ├── paymentController.js │ ├── productController.js │ └── userController.js ├── middlewares │ ├── asyncErrorHandler.js │ ├── auth.js │ └── error.js ├── models │ ├── orderModel.js │ ├── paymentModel.js │ ├── productModel.js │ └── userModel.js ├── package-lock.json ├── package.json ├── routes │ ├── orderRoute.js │ ├── paymentRoute.js │ ├── productRoute.js │ └── userRoute.js ├── server.js └── utils │ ├── errorHandler.js │ ├── searchFeatures.js │ ├── sendEmail.js │ └── sendToken.js └── frontend ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── postcss.config.js ├── public ├── favicon.ico ├── flipkartlogo01.png ├── flipkartlogo02.png ├── index.html ├── manifest.json └── robots.txt ├── src ├── App.js ├── Routes │ └── ProtectedRoute.js ├── actions │ ├── cartAction.js │ ├── orderAction.js │ ├── productAction.js │ ├── saveForLaterAction.js │ ├── userAction.js │ └── wishlistAction.js ├── assets │ └── images │ │ ├── 404-not-found.svg │ │ ├── Banners │ │ ├── fashion-sale.webp │ │ ├── fashionsale.jpg │ │ ├── gadget-sale.jpg │ │ ├── kitchen-sale.jpg │ │ ├── oppo-reno7.webp │ │ ├── poco-m4-pro.webp │ │ ├── realme-9-pro.webp │ │ └── vivo.webp │ │ ├── Categories │ │ ├── appliances.png │ │ ├── beauty.png │ │ ├── electronics.png │ │ ├── fashion.png │ │ ├── furniture.png │ │ ├── grocery.png │ │ ├── home.png │ │ ├── phone.png │ │ └── travel.png │ │ ├── Transaction │ │ ├── failed.png │ │ └── success.png │ │ ├── logo.png │ │ └── payment-methods.svg ├── components │ ├── Admin │ │ ├── Actions.jsx │ │ ├── Dashboard.jsx │ │ ├── Loading.jsx │ │ ├── MainData.jsx │ │ ├── NewProduct.jsx │ │ ├── OrderTable.jsx │ │ ├── ProductTable.jsx │ │ ├── ReviewsTable.jsx │ │ ├── Sidebar │ │ │ ├── Sidebar.css │ │ │ └── Sidebar.jsx │ │ ├── UpdateOrder.jsx │ │ ├── UpdateProduct.jsx │ │ ├── UpdateUser.jsx │ │ └── UserTable.jsx │ ├── Cart │ │ ├── Cart.jsx │ │ ├── CartItem.jsx │ │ ├── EmptyCart.jsx │ │ ├── OrderConfirm.jsx │ │ ├── OrderStatus.jsx │ │ ├── OrderSuccess.jsx │ │ ├── Payment.jsx │ │ ├── PriceSidebar.jsx │ │ ├── SaveForLaterItem.jsx │ │ ├── Shipping.jsx │ │ └── Stepper.jsx │ ├── Home │ │ ├── Banner │ │ │ ├── Banner.css │ │ │ └── Banner.jsx │ │ ├── DealSlider │ │ │ ├── DealSlider.jsx │ │ │ └── Product.jsx │ │ ├── Home.jsx │ │ └── ProductSlider │ │ │ ├── Product.jsx │ │ │ └── ProductSlider.jsx │ ├── Layouts │ │ ├── BackdropLoader.jsx │ │ ├── Categories.jsx │ │ ├── Footer │ │ │ └── Footer.jsx │ │ ├── Header │ │ │ ├── Header.jsx │ │ │ ├── PrimaryDropDownMenu.jsx │ │ │ ├── Searchbar.jsx │ │ │ └── SecondaryDropDownMenu.jsx │ │ ├── Loader.jsx │ │ ├── MetaData.jsx │ │ └── MinCategory.jsx │ ├── NotFound.jsx │ ├── Order │ │ ├── MyOrders.jsx │ │ ├── OrderDetails.jsx │ │ ├── OrderItem.jsx │ │ └── TrackStepper.jsx │ ├── ProductDetails │ │ └── ProductDetails.jsx │ ├── Products │ │ ├── Product.jsx │ │ └── Products.jsx │ ├── User │ │ ├── Account.jsx │ │ ├── ForgotPassword.jsx │ │ ├── FormSidebar.jsx │ │ ├── Login.jsx │ │ ├── Register.jsx │ │ ├── ResetPassword.jsx │ │ ├── Sidebar.jsx │ │ ├── UpdatePassword.jsx │ │ └── UpdateProfile.jsx │ └── Wishlist │ │ ├── Product.jsx │ │ └── Wishlist.jsx ├── constants │ ├── cartConstants.js │ ├── orderConstants.js │ ├── productConstants.js │ ├── saveForLaterConstants.js │ ├── userConstants.js │ └── wishlistConstants.js ├── index.css ├── index.js ├── reducers │ ├── cartReducer.js │ ├── orderReducer.js │ ├── productReducer.js │ ├── saveForLaterReducer.js │ ├── userReducer.js │ └── wishlistReducer.js ├── store.js ├── urlconfig.js └── utils │ ├── constants.js │ ├── functions.js │ ├── paytmForm.js │ └── states.js └── tailwind.config.js /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/README.md -------------------------------------------------------------------------------- /backend/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /config/.env -------------------------------------------------------------------------------- /backend/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/backend/app.js -------------------------------------------------------------------------------- /backend/config/database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/backend/config/database.js -------------------------------------------------------------------------------- /backend/controllers/orderController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/backend/controllers/orderController.js -------------------------------------------------------------------------------- /backend/controllers/paymentController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/backend/controllers/paymentController.js -------------------------------------------------------------------------------- /backend/controllers/productController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/backend/controllers/productController.js -------------------------------------------------------------------------------- /backend/controllers/userController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/backend/controllers/userController.js -------------------------------------------------------------------------------- /backend/middlewares/asyncErrorHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/backend/middlewares/asyncErrorHandler.js -------------------------------------------------------------------------------- /backend/middlewares/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/backend/middlewares/auth.js -------------------------------------------------------------------------------- /backend/middlewares/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/backend/middlewares/error.js -------------------------------------------------------------------------------- /backend/models/orderModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/backend/models/orderModel.js -------------------------------------------------------------------------------- /backend/models/paymentModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/backend/models/paymentModel.js -------------------------------------------------------------------------------- /backend/models/productModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/backend/models/productModel.js -------------------------------------------------------------------------------- /backend/models/userModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/backend/models/userModel.js -------------------------------------------------------------------------------- /backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/backend/package-lock.json -------------------------------------------------------------------------------- /backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/backend/package.json -------------------------------------------------------------------------------- /backend/routes/orderRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/backend/routes/orderRoute.js -------------------------------------------------------------------------------- /backend/routes/paymentRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/backend/routes/paymentRoute.js -------------------------------------------------------------------------------- /backend/routes/productRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/backend/routes/productRoute.js -------------------------------------------------------------------------------- /backend/routes/userRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/backend/routes/userRoute.js -------------------------------------------------------------------------------- /backend/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/backend/server.js -------------------------------------------------------------------------------- /backend/utils/errorHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/backend/utils/errorHandler.js -------------------------------------------------------------------------------- /backend/utils/searchFeatures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/backend/utils/searchFeatures.js -------------------------------------------------------------------------------- /backend/utils/sendEmail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/backend/utils/sendEmail.js -------------------------------------------------------------------------------- /backend/utils/sendToken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/backend/utils/sendToken.js -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/postcss.config.js -------------------------------------------------------------------------------- /frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/public/favicon.ico -------------------------------------------------------------------------------- /frontend/public/flipkartlogo01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/public/flipkartlogo01.png -------------------------------------------------------------------------------- /frontend/public/flipkartlogo02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/public/flipkartlogo02.png -------------------------------------------------------------------------------- /frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/public/index.html -------------------------------------------------------------------------------- /frontend/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/public/manifest.json -------------------------------------------------------------------------------- /frontend/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/public/robots.txt -------------------------------------------------------------------------------- /frontend/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/App.js -------------------------------------------------------------------------------- /frontend/src/Routes/ProtectedRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/Routes/ProtectedRoute.js -------------------------------------------------------------------------------- /frontend/src/actions/cartAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/actions/cartAction.js -------------------------------------------------------------------------------- /frontend/src/actions/orderAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/actions/orderAction.js -------------------------------------------------------------------------------- /frontend/src/actions/productAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/actions/productAction.js -------------------------------------------------------------------------------- /frontend/src/actions/saveForLaterAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/actions/saveForLaterAction.js -------------------------------------------------------------------------------- /frontend/src/actions/userAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/actions/userAction.js -------------------------------------------------------------------------------- /frontend/src/actions/wishlistAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/actions/wishlistAction.js -------------------------------------------------------------------------------- /frontend/src/assets/images/404-not-found.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/assets/images/404-not-found.svg -------------------------------------------------------------------------------- /frontend/src/assets/images/Banners/fashion-sale.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/assets/images/Banners/fashion-sale.webp -------------------------------------------------------------------------------- /frontend/src/assets/images/Banners/fashionsale.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/assets/images/Banners/fashionsale.jpg -------------------------------------------------------------------------------- /frontend/src/assets/images/Banners/gadget-sale.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/assets/images/Banners/gadget-sale.jpg -------------------------------------------------------------------------------- /frontend/src/assets/images/Banners/kitchen-sale.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/assets/images/Banners/kitchen-sale.jpg -------------------------------------------------------------------------------- /frontend/src/assets/images/Banners/oppo-reno7.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/assets/images/Banners/oppo-reno7.webp -------------------------------------------------------------------------------- /frontend/src/assets/images/Banners/poco-m4-pro.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/assets/images/Banners/poco-m4-pro.webp -------------------------------------------------------------------------------- /frontend/src/assets/images/Banners/realme-9-pro.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/assets/images/Banners/realme-9-pro.webp -------------------------------------------------------------------------------- /frontend/src/assets/images/Banners/vivo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/assets/images/Banners/vivo.webp -------------------------------------------------------------------------------- /frontend/src/assets/images/Categories/appliances.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/assets/images/Categories/appliances.png -------------------------------------------------------------------------------- /frontend/src/assets/images/Categories/beauty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/assets/images/Categories/beauty.png -------------------------------------------------------------------------------- /frontend/src/assets/images/Categories/electronics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/assets/images/Categories/electronics.png -------------------------------------------------------------------------------- /frontend/src/assets/images/Categories/fashion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/assets/images/Categories/fashion.png -------------------------------------------------------------------------------- /frontend/src/assets/images/Categories/furniture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/assets/images/Categories/furniture.png -------------------------------------------------------------------------------- /frontend/src/assets/images/Categories/grocery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/assets/images/Categories/grocery.png -------------------------------------------------------------------------------- /frontend/src/assets/images/Categories/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/assets/images/Categories/home.png -------------------------------------------------------------------------------- /frontend/src/assets/images/Categories/phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/assets/images/Categories/phone.png -------------------------------------------------------------------------------- /frontend/src/assets/images/Categories/travel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/assets/images/Categories/travel.png -------------------------------------------------------------------------------- /frontend/src/assets/images/Transaction/failed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/assets/images/Transaction/failed.png -------------------------------------------------------------------------------- /frontend/src/assets/images/Transaction/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/assets/images/Transaction/success.png -------------------------------------------------------------------------------- /frontend/src/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/assets/images/logo.png -------------------------------------------------------------------------------- /frontend/src/assets/images/payment-methods.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/assets/images/payment-methods.svg -------------------------------------------------------------------------------- /frontend/src/components/Admin/Actions.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/components/Admin/Actions.jsx -------------------------------------------------------------------------------- /frontend/src/components/Admin/Dashboard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/components/Admin/Dashboard.jsx -------------------------------------------------------------------------------- /frontend/src/components/Admin/Loading.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/components/Admin/Loading.jsx -------------------------------------------------------------------------------- /frontend/src/components/Admin/MainData.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/components/Admin/MainData.jsx -------------------------------------------------------------------------------- /frontend/src/components/Admin/NewProduct.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/components/Admin/NewProduct.jsx -------------------------------------------------------------------------------- /frontend/src/components/Admin/OrderTable.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/components/Admin/OrderTable.jsx -------------------------------------------------------------------------------- /frontend/src/components/Admin/ProductTable.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/components/Admin/ProductTable.jsx -------------------------------------------------------------------------------- /frontend/src/components/Admin/ReviewsTable.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/components/Admin/ReviewsTable.jsx -------------------------------------------------------------------------------- /frontend/src/components/Admin/Sidebar/Sidebar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/components/Admin/Sidebar/Sidebar.css -------------------------------------------------------------------------------- /frontend/src/components/Admin/Sidebar/Sidebar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/components/Admin/Sidebar/Sidebar.jsx -------------------------------------------------------------------------------- /frontend/src/components/Admin/UpdateOrder.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/components/Admin/UpdateOrder.jsx -------------------------------------------------------------------------------- /frontend/src/components/Admin/UpdateProduct.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/components/Admin/UpdateProduct.jsx -------------------------------------------------------------------------------- /frontend/src/components/Admin/UpdateUser.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/components/Admin/UpdateUser.jsx -------------------------------------------------------------------------------- /frontend/src/components/Admin/UserTable.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/components/Admin/UserTable.jsx -------------------------------------------------------------------------------- /frontend/src/components/Cart/Cart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/components/Cart/Cart.jsx -------------------------------------------------------------------------------- /frontend/src/components/Cart/CartItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/components/Cart/CartItem.jsx -------------------------------------------------------------------------------- /frontend/src/components/Cart/EmptyCart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/components/Cart/EmptyCart.jsx -------------------------------------------------------------------------------- /frontend/src/components/Cart/OrderConfirm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/components/Cart/OrderConfirm.jsx -------------------------------------------------------------------------------- /frontend/src/components/Cart/OrderStatus.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/components/Cart/OrderStatus.jsx -------------------------------------------------------------------------------- /frontend/src/components/Cart/OrderSuccess.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/components/Cart/OrderSuccess.jsx -------------------------------------------------------------------------------- /frontend/src/components/Cart/Payment.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/components/Cart/Payment.jsx -------------------------------------------------------------------------------- /frontend/src/components/Cart/PriceSidebar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/components/Cart/PriceSidebar.jsx -------------------------------------------------------------------------------- /frontend/src/components/Cart/SaveForLaterItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/components/Cart/SaveForLaterItem.jsx -------------------------------------------------------------------------------- /frontend/src/components/Cart/Shipping.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/components/Cart/Shipping.jsx -------------------------------------------------------------------------------- /frontend/src/components/Cart/Stepper.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/components/Cart/Stepper.jsx -------------------------------------------------------------------------------- /frontend/src/components/Home/Banner/Banner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/components/Home/Banner/Banner.css -------------------------------------------------------------------------------- /frontend/src/components/Home/Banner/Banner.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/components/Home/Banner/Banner.jsx -------------------------------------------------------------------------------- /frontend/src/components/Home/DealSlider/DealSlider.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/components/Home/DealSlider/DealSlider.jsx -------------------------------------------------------------------------------- /frontend/src/components/Home/DealSlider/Product.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/components/Home/DealSlider/Product.jsx -------------------------------------------------------------------------------- /frontend/src/components/Home/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/components/Home/Home.jsx -------------------------------------------------------------------------------- /frontend/src/components/Home/ProductSlider/Product.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/components/Home/ProductSlider/Product.jsx -------------------------------------------------------------------------------- /frontend/src/components/Home/ProductSlider/ProductSlider.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/components/Home/ProductSlider/ProductSlider.jsx -------------------------------------------------------------------------------- /frontend/src/components/Layouts/BackdropLoader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/components/Layouts/BackdropLoader.jsx -------------------------------------------------------------------------------- /frontend/src/components/Layouts/Categories.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/components/Layouts/Categories.jsx -------------------------------------------------------------------------------- /frontend/src/components/Layouts/Footer/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/components/Layouts/Footer/Footer.jsx -------------------------------------------------------------------------------- /frontend/src/components/Layouts/Header/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/components/Layouts/Header/Header.jsx -------------------------------------------------------------------------------- /frontend/src/components/Layouts/Header/PrimaryDropDownMenu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/components/Layouts/Header/PrimaryDropDownMenu.jsx -------------------------------------------------------------------------------- /frontend/src/components/Layouts/Header/Searchbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/components/Layouts/Header/Searchbar.jsx -------------------------------------------------------------------------------- /frontend/src/components/Layouts/Header/SecondaryDropDownMenu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/components/Layouts/Header/SecondaryDropDownMenu.jsx -------------------------------------------------------------------------------- /frontend/src/components/Layouts/Loader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/components/Layouts/Loader.jsx -------------------------------------------------------------------------------- /frontend/src/components/Layouts/MetaData.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/components/Layouts/MetaData.jsx -------------------------------------------------------------------------------- /frontend/src/components/Layouts/MinCategory.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/components/Layouts/MinCategory.jsx -------------------------------------------------------------------------------- /frontend/src/components/NotFound.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/components/NotFound.jsx -------------------------------------------------------------------------------- /frontend/src/components/Order/MyOrders.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/components/Order/MyOrders.jsx -------------------------------------------------------------------------------- /frontend/src/components/Order/OrderDetails.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/components/Order/OrderDetails.jsx -------------------------------------------------------------------------------- /frontend/src/components/Order/OrderItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/components/Order/OrderItem.jsx -------------------------------------------------------------------------------- /frontend/src/components/Order/TrackStepper.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/components/Order/TrackStepper.jsx -------------------------------------------------------------------------------- /frontend/src/components/ProductDetails/ProductDetails.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/components/ProductDetails/ProductDetails.jsx -------------------------------------------------------------------------------- /frontend/src/components/Products/Product.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/components/Products/Product.jsx -------------------------------------------------------------------------------- /frontend/src/components/Products/Products.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/components/Products/Products.jsx -------------------------------------------------------------------------------- /frontend/src/components/User/Account.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/components/User/Account.jsx -------------------------------------------------------------------------------- /frontend/src/components/User/ForgotPassword.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/components/User/ForgotPassword.jsx -------------------------------------------------------------------------------- /frontend/src/components/User/FormSidebar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/components/User/FormSidebar.jsx -------------------------------------------------------------------------------- /frontend/src/components/User/Login.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/components/User/Login.jsx -------------------------------------------------------------------------------- /frontend/src/components/User/Register.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/components/User/Register.jsx -------------------------------------------------------------------------------- /frontend/src/components/User/ResetPassword.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/components/User/ResetPassword.jsx -------------------------------------------------------------------------------- /frontend/src/components/User/Sidebar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/components/User/Sidebar.jsx -------------------------------------------------------------------------------- /frontend/src/components/User/UpdatePassword.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/components/User/UpdatePassword.jsx -------------------------------------------------------------------------------- /frontend/src/components/User/UpdateProfile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/components/User/UpdateProfile.jsx -------------------------------------------------------------------------------- /frontend/src/components/Wishlist/Product.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/components/Wishlist/Product.jsx -------------------------------------------------------------------------------- /frontend/src/components/Wishlist/Wishlist.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/components/Wishlist/Wishlist.jsx -------------------------------------------------------------------------------- /frontend/src/constants/cartConstants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/constants/cartConstants.js -------------------------------------------------------------------------------- /frontend/src/constants/orderConstants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/constants/orderConstants.js -------------------------------------------------------------------------------- /frontend/src/constants/productConstants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/constants/productConstants.js -------------------------------------------------------------------------------- /frontend/src/constants/saveForLaterConstants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/constants/saveForLaterConstants.js -------------------------------------------------------------------------------- /frontend/src/constants/userConstants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/constants/userConstants.js -------------------------------------------------------------------------------- /frontend/src/constants/wishlistConstants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/constants/wishlistConstants.js -------------------------------------------------------------------------------- /frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/index.css -------------------------------------------------------------------------------- /frontend/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/index.js -------------------------------------------------------------------------------- /frontend/src/reducers/cartReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/reducers/cartReducer.js -------------------------------------------------------------------------------- /frontend/src/reducers/orderReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/reducers/orderReducer.js -------------------------------------------------------------------------------- /frontend/src/reducers/productReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/reducers/productReducer.js -------------------------------------------------------------------------------- /frontend/src/reducers/saveForLaterReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/reducers/saveForLaterReducer.js -------------------------------------------------------------------------------- /frontend/src/reducers/userReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/reducers/userReducer.js -------------------------------------------------------------------------------- /frontend/src/reducers/wishlistReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/reducers/wishlistReducer.js -------------------------------------------------------------------------------- /frontend/src/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/store.js -------------------------------------------------------------------------------- /frontend/src/urlconfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/urlconfig.js -------------------------------------------------------------------------------- /frontend/src/utils/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/utils/constants.js -------------------------------------------------------------------------------- /frontend/src/utils/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/utils/functions.js -------------------------------------------------------------------------------- /frontend/src/utils/paytmForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/utils/paytmForm.js -------------------------------------------------------------------------------- /frontend/src/utils/states.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/src/utils/states.js -------------------------------------------------------------------------------- /frontend/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Golu7667/Flipkart-Clone/HEAD/frontend/tailwind.config.js --------------------------------------------------------------------------------