├── .gitignore ├── .vscode └── settings.json ├── README.md ├── package.json ├── public ├── _redirects ├── assets │ ├── anushka.png │ ├── bg.jpg │ ├── categoryIcon │ │ ├── bracelet.png │ │ ├── earring.png │ │ ├── necklace.png │ │ └── ring.png │ ├── empty-cart.svg │ ├── empty-wishlist.png │ ├── hands.jpg │ ├── hero.jpg │ ├── jewelry.png │ ├── loginBg.jpg │ ├── logintestbg.jpg │ ├── model2.jpg │ ├── model3.jpg │ ├── model5.jpg │ ├── mt-cart.png │ ├── order-placed-purchased-icon.svg │ ├── owner.jpg │ ├── stonesjewel.jpg │ └── whyUsIcons │ │ ├── boxes-packing-solid.svg │ │ ├── percent-solid.svg │ │ ├── truck-fast-solid.svg │ │ └── wallet-solid.svg ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt └── src ├── App.css ├── App.js ├── allReducers ├── addressReducer.jsx ├── cartReducer.jsx ├── filtersReducer.jsx └── wishReducer.jsx ├── backend ├── controllers │ ├── AuthController.js │ ├── CartController.js │ ├── CategoryController.js │ ├── ProductController.js │ └── WishlistController.js ├── db │ ├── categories.js │ ├── products.js │ └── users.js └── utils │ └── authUtils.js ├── components ├── AddressCard.jsx ├── ChangeQty.jsx ├── EmptyCart.jsx ├── FilledCart.jsx ├── Footer.jsx ├── Header.jsx ├── ImageUploader.jsx ├── Loader.jsx ├── MockMan.jsx ├── ProductCard.jsx ├── RequiresAuth.js ├── ScrollUp.jsx └── UpdateAdd.jsx ├── context ├── AddressContext.jsx ├── AuthContext.jsx ├── CartContext.jsx ├── DataContext.jsx ├── OrderContext.jsx └── WishListContext.jsx ├── index.css ├── index.js ├── mainPages ├── About │ ├── about.css │ └── index.jsx ├── Cart │ ├── cart.css │ ├── cartComponents │ │ ├── CheckoutDetails.jsx │ │ ├── OrdersComplete.jsx │ │ └── ShoppingCart.jsx │ └── index.jsx ├── Contact │ ├── contact.css │ └── index.jsx ├── Error.jsx ├── Home │ ├── home.css │ └── index.jsx ├── Login │ ├── index.jsx │ └── login.css ├── ProductDetails │ ├── index.jsx │ └── productDetails.css ├── Profile │ ├── components │ │ ├── Address.jsx │ │ ├── Orders.jsx │ │ └── User.jsx │ ├── index.jsx │ └── profile.css ├── Shop │ ├── index.jsx │ └── shop.css └── WishList │ ├── index.jsx │ └── wishList.css ├── server.js └── services ├── authService ├── loginService.jsx └── signUpSevice.jsx └── shopingService ├── cartService.jsx ├── categoryService.jsx ├── shopService.jsx └── wishlistService.jsx /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/package.json -------------------------------------------------------------------------------- /public/_redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/public/_redirects -------------------------------------------------------------------------------- /public/assets/anushka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/public/assets/anushka.png -------------------------------------------------------------------------------- /public/assets/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/public/assets/bg.jpg -------------------------------------------------------------------------------- /public/assets/categoryIcon/bracelet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/public/assets/categoryIcon/bracelet.png -------------------------------------------------------------------------------- /public/assets/categoryIcon/earring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/public/assets/categoryIcon/earring.png -------------------------------------------------------------------------------- /public/assets/categoryIcon/necklace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/public/assets/categoryIcon/necklace.png -------------------------------------------------------------------------------- /public/assets/categoryIcon/ring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/public/assets/categoryIcon/ring.png -------------------------------------------------------------------------------- /public/assets/empty-cart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/public/assets/empty-cart.svg -------------------------------------------------------------------------------- /public/assets/empty-wishlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/public/assets/empty-wishlist.png -------------------------------------------------------------------------------- /public/assets/hands.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/public/assets/hands.jpg -------------------------------------------------------------------------------- /public/assets/hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/public/assets/hero.jpg -------------------------------------------------------------------------------- /public/assets/jewelry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/public/assets/jewelry.png -------------------------------------------------------------------------------- /public/assets/loginBg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/public/assets/loginBg.jpg -------------------------------------------------------------------------------- /public/assets/logintestbg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/public/assets/logintestbg.jpg -------------------------------------------------------------------------------- /public/assets/model2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/public/assets/model2.jpg -------------------------------------------------------------------------------- /public/assets/model3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/public/assets/model3.jpg -------------------------------------------------------------------------------- /public/assets/model5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/public/assets/model5.jpg -------------------------------------------------------------------------------- /public/assets/mt-cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/public/assets/mt-cart.png -------------------------------------------------------------------------------- /public/assets/order-placed-purchased-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/public/assets/order-placed-purchased-icon.svg -------------------------------------------------------------------------------- /public/assets/owner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/public/assets/owner.jpg -------------------------------------------------------------------------------- /public/assets/stonesjewel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/public/assets/stonesjewel.jpg -------------------------------------------------------------------------------- /public/assets/whyUsIcons/boxes-packing-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/public/assets/whyUsIcons/boxes-packing-solid.svg -------------------------------------------------------------------------------- /public/assets/whyUsIcons/percent-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/public/assets/whyUsIcons/percent-solid.svg -------------------------------------------------------------------------------- /public/assets/whyUsIcons/truck-fast-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/public/assets/whyUsIcons/truck-fast-solid.svg -------------------------------------------------------------------------------- /public/assets/whyUsIcons/wallet-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/public/assets/whyUsIcons/wallet-solid.svg -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/src/App.js -------------------------------------------------------------------------------- /src/allReducers/addressReducer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/src/allReducers/addressReducer.jsx -------------------------------------------------------------------------------- /src/allReducers/cartReducer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/src/allReducers/cartReducer.jsx -------------------------------------------------------------------------------- /src/allReducers/filtersReducer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/src/allReducers/filtersReducer.jsx -------------------------------------------------------------------------------- /src/allReducers/wishReducer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/src/allReducers/wishReducer.jsx -------------------------------------------------------------------------------- /src/backend/controllers/AuthController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/src/backend/controllers/AuthController.js -------------------------------------------------------------------------------- /src/backend/controllers/CartController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/src/backend/controllers/CartController.js -------------------------------------------------------------------------------- /src/backend/controllers/CategoryController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/src/backend/controllers/CategoryController.js -------------------------------------------------------------------------------- /src/backend/controllers/ProductController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/src/backend/controllers/ProductController.js -------------------------------------------------------------------------------- /src/backend/controllers/WishlistController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/src/backend/controllers/WishlistController.js -------------------------------------------------------------------------------- /src/backend/db/categories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/src/backend/db/categories.js -------------------------------------------------------------------------------- /src/backend/db/products.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/src/backend/db/products.js -------------------------------------------------------------------------------- /src/backend/db/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/src/backend/db/users.js -------------------------------------------------------------------------------- /src/backend/utils/authUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/src/backend/utils/authUtils.js -------------------------------------------------------------------------------- /src/components/AddressCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/src/components/AddressCard.jsx -------------------------------------------------------------------------------- /src/components/ChangeQty.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/src/components/ChangeQty.jsx -------------------------------------------------------------------------------- /src/components/EmptyCart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/src/components/EmptyCart.jsx -------------------------------------------------------------------------------- /src/components/FilledCart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/src/components/FilledCart.jsx -------------------------------------------------------------------------------- /src/components/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/src/components/Footer.jsx -------------------------------------------------------------------------------- /src/components/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/src/components/Header.jsx -------------------------------------------------------------------------------- /src/components/ImageUploader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/src/components/ImageUploader.jsx -------------------------------------------------------------------------------- /src/components/Loader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/src/components/Loader.jsx -------------------------------------------------------------------------------- /src/components/MockMan.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/src/components/MockMan.jsx -------------------------------------------------------------------------------- /src/components/ProductCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/src/components/ProductCard.jsx -------------------------------------------------------------------------------- /src/components/RequiresAuth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/src/components/RequiresAuth.js -------------------------------------------------------------------------------- /src/components/ScrollUp.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/src/components/ScrollUp.jsx -------------------------------------------------------------------------------- /src/components/UpdateAdd.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/src/components/UpdateAdd.jsx -------------------------------------------------------------------------------- /src/context/AddressContext.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/src/context/AddressContext.jsx -------------------------------------------------------------------------------- /src/context/AuthContext.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/src/context/AuthContext.jsx -------------------------------------------------------------------------------- /src/context/CartContext.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/src/context/CartContext.jsx -------------------------------------------------------------------------------- /src/context/DataContext.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/src/context/DataContext.jsx -------------------------------------------------------------------------------- /src/context/OrderContext.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/src/context/OrderContext.jsx -------------------------------------------------------------------------------- /src/context/WishListContext.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/src/context/WishListContext.jsx -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/src/index.js -------------------------------------------------------------------------------- /src/mainPages/About/about.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/src/mainPages/About/about.css -------------------------------------------------------------------------------- /src/mainPages/About/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/src/mainPages/About/index.jsx -------------------------------------------------------------------------------- /src/mainPages/Cart/cart.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/src/mainPages/Cart/cart.css -------------------------------------------------------------------------------- /src/mainPages/Cart/cartComponents/CheckoutDetails.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/src/mainPages/Cart/cartComponents/CheckoutDetails.jsx -------------------------------------------------------------------------------- /src/mainPages/Cart/cartComponents/OrdersComplete.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/src/mainPages/Cart/cartComponents/OrdersComplete.jsx -------------------------------------------------------------------------------- /src/mainPages/Cart/cartComponents/ShoppingCart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/src/mainPages/Cart/cartComponents/ShoppingCart.jsx -------------------------------------------------------------------------------- /src/mainPages/Cart/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/src/mainPages/Cart/index.jsx -------------------------------------------------------------------------------- /src/mainPages/Contact/contact.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/src/mainPages/Contact/contact.css -------------------------------------------------------------------------------- /src/mainPages/Contact/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/src/mainPages/Contact/index.jsx -------------------------------------------------------------------------------- /src/mainPages/Error.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/src/mainPages/Error.jsx -------------------------------------------------------------------------------- /src/mainPages/Home/home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/src/mainPages/Home/home.css -------------------------------------------------------------------------------- /src/mainPages/Home/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/src/mainPages/Home/index.jsx -------------------------------------------------------------------------------- /src/mainPages/Login/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/src/mainPages/Login/index.jsx -------------------------------------------------------------------------------- /src/mainPages/Login/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/src/mainPages/Login/login.css -------------------------------------------------------------------------------- /src/mainPages/ProductDetails/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/src/mainPages/ProductDetails/index.jsx -------------------------------------------------------------------------------- /src/mainPages/ProductDetails/productDetails.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/src/mainPages/ProductDetails/productDetails.css -------------------------------------------------------------------------------- /src/mainPages/Profile/components/Address.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/src/mainPages/Profile/components/Address.jsx -------------------------------------------------------------------------------- /src/mainPages/Profile/components/Orders.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/src/mainPages/Profile/components/Orders.jsx -------------------------------------------------------------------------------- /src/mainPages/Profile/components/User.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/src/mainPages/Profile/components/User.jsx -------------------------------------------------------------------------------- /src/mainPages/Profile/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/src/mainPages/Profile/index.jsx -------------------------------------------------------------------------------- /src/mainPages/Profile/profile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/src/mainPages/Profile/profile.css -------------------------------------------------------------------------------- /src/mainPages/Shop/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/src/mainPages/Shop/index.jsx -------------------------------------------------------------------------------- /src/mainPages/Shop/shop.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/src/mainPages/Shop/shop.css -------------------------------------------------------------------------------- /src/mainPages/WishList/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/src/mainPages/WishList/index.jsx -------------------------------------------------------------------------------- /src/mainPages/WishList/wishList.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/src/mainPages/WishList/wishList.css -------------------------------------------------------------------------------- /src/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/src/server.js -------------------------------------------------------------------------------- /src/services/authService/loginService.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/src/services/authService/loginService.jsx -------------------------------------------------------------------------------- /src/services/authService/signUpSevice.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/src/services/authService/signUpSevice.jsx -------------------------------------------------------------------------------- /src/services/shopingService/cartService.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/src/services/shopingService/cartService.jsx -------------------------------------------------------------------------------- /src/services/shopingService/categoryService.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/src/services/shopingService/categoryService.jsx -------------------------------------------------------------------------------- /src/services/shopingService/shopService.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/src/services/shopingService/shopService.jsx -------------------------------------------------------------------------------- /src/services/shopingService/wishlistService.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anush79/shringaarEcommerce/HEAD/src/services/shopingService/wishlistService.jsx --------------------------------------------------------------------------------