├── README.md ├── backend ├── index.js ├── package-lock.json └── package.json └── frontend ├── README.md ├── package-lock.json ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── App.css ├── App.js ├── App.test.js ├── assest │ ├── Birthday-cake-with-flowers.png │ ├── Ice-Cream-Cup.png │ ├── Kakas Chinese rice.avif │ ├── Sandwich1.png │ ├── Strawberries & Cream - Tubzee Ice Cream.jfif │ ├── amaranthus 1 bunch - vegetables.jpg │ ├── apple.jfif │ ├── apple1.jfif │ ├── baby kiwi - fruits.jpg │ ├── basmati-rice-png.png │ ├── beetroot - vegetables.jpg │ ├── birthday-cake-png-clip-art-birthday-cake-.png │ ├── biryani-category.png │ ├── brinjal nagpure - vegetables.jpg │ ├── burger-category.png │ ├── burger-king-whopper-with-cheese-png-image-purepng-20.png │ ├── cabbage per pc - vegetables.jpg │ ├── cake.png │ ├── cake1.png │ ├── carrot red per kg - vegetables.jpg │ ├── cauliflower 1 pc - vegetables.jpg │ ├── chicken-category.png │ ├── chocolate-ice-cream-sundae-neapolitan-ice-cream-ice-cream-cream-food-frozen-dessert-thumbnail.png │ ├── classic-cheeseburger-with-beef-patty-pickles-cheese-tomato-onion-lettuce-and-ketchup-mustard-free-png.webp │ ├── coriander bunch 50g 200g - vegetables.jpg │ ├── cowpea beans 500g - vegetables.jpg │ ├── cream-ice-pistachio.png │ ├── dish-food-cuisine-pizza-ingredient-pizza-hut-pepperoni-pizza.jpg │ ├── dosa-category.png │ ├── dosa-masala.png │ ├── dragonfruit - fruits.jpg │ ├── empty.gif │ ├── fresh-yellow-banana-fruit-free.png │ ├── fried rice-category.avif │ ├── fruits.jfif │ ├── garlic peeled - vegetables.jpg │ ├── ginger 200g - vegetables.jpg │ ├── green capsicum 500.jpg │ ├── green peas - vegetables.jpg │ ├── ice-cream-bowl-image.png │ ├── ice-cream-images.png │ ├── ice-cream.png │ ├── indian garlic - 200g - vegetables.jpg │ ├── login-animation.gif │ ├── logo.png │ ├── mango-png-image-mongo-clipart-ripening-of-mango.png │ ├── mongo-clipart-gourd-transparent-png.png │ ├── mongo.png │ ├── musk melon - fruits.jpg │ ├── noodles.png │ ├── onion 5 kg - vegetables.jpg │ ├── orange1.jfif │ ├── paneer-category.png │ ├── paneer-tikka.png │ ├── pepperoni-pizza-chicago-style-pizza-italian-cuisine-breakfast-oven-pizza-food-baking-plate.png │ ├── pineapple-fruit-tropical-fruit-natural-foods-ananas-ananas.png │ ├── pineapple.jfif │ ├── pizza-category.png │ ├── pizza-hut-pizza.png │ ├── png-transparent-flatbread-with-dip-dosa-chutney-indian-cuisine-crepe-idli-rice-food-recipe-cuisine.png │ ├── png-transparent-pasta-spaghetti-with-meatballs-italian-cuisine-cyborg-noodle-food-recipe-american-food.png │ ├── potato per kg - vegetables.jpg │ ├── red capsicum 200g - vegetables.jpg │ ├── rice-bowl-rice.png │ ├── sandwich-sandwich.png │ ├── sharad seedless grapes 500 - fruits.jpg │ ├── spring onion per bunch - vegetables.jpg │ ├── thai guava 2 pcs - fruits.jpg │ ├── thali-menu-veg-thali.png │ └── watermelon - fruits.jpg ├── component │ ├── AllProduct.js │ ├── CardFeature.js │ ├── FilterProduct.js │ ├── Header.js │ ├── HomeCard.js │ └── cartProduct.js ├── index.css ├── index.js ├── logo.svg ├── page │ ├── About.js │ ├── Cancel.js │ ├── Cart.js │ ├── Contact.js │ ├── Home.js │ ├── Menu.js │ ├── Newproduct.js │ ├── Signup.js │ ├── Success.js │ └── login.js ├── redux │ ├── index.js │ ├── productSlide.js │ └── userSlice.js ├── reportWebVitals.js ├── setupTests.js └── utility │ └── ImagetoBase64.js └── tailwind.config.js /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/README.md -------------------------------------------------------------------------------- /backend/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/backend/index.js -------------------------------------------------------------------------------- /backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/backend/package-lock.json -------------------------------------------------------------------------------- /backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/backend/package.json -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/public/favicon.ico -------------------------------------------------------------------------------- /frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/public/index.html -------------------------------------------------------------------------------- /frontend/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/public/logo192.png -------------------------------------------------------------------------------- /frontend/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/public/logo512.png -------------------------------------------------------------------------------- /frontend/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/public/manifest.json -------------------------------------------------------------------------------- /frontend/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/public/robots.txt -------------------------------------------------------------------------------- /frontend/src/App.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/App.js -------------------------------------------------------------------------------- /frontend/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/App.test.js -------------------------------------------------------------------------------- /frontend/src/assest/Birthday-cake-with-flowers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/Birthday-cake-with-flowers.png -------------------------------------------------------------------------------- /frontend/src/assest/Ice-Cream-Cup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/Ice-Cream-Cup.png -------------------------------------------------------------------------------- /frontend/src/assest/Kakas Chinese rice.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/Kakas Chinese rice.avif -------------------------------------------------------------------------------- /frontend/src/assest/Sandwich1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/Sandwich1.png -------------------------------------------------------------------------------- /frontend/src/assest/Strawberries & Cream - Tubzee Ice Cream.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/Strawberries & Cream - Tubzee Ice Cream.jfif -------------------------------------------------------------------------------- /frontend/src/assest/amaranthus 1 bunch - vegetables.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/amaranthus 1 bunch - vegetables.jpg -------------------------------------------------------------------------------- /frontend/src/assest/apple.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/apple.jfif -------------------------------------------------------------------------------- /frontend/src/assest/apple1.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/apple1.jfif -------------------------------------------------------------------------------- /frontend/src/assest/baby kiwi - fruits.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/baby kiwi - fruits.jpg -------------------------------------------------------------------------------- /frontend/src/assest/basmati-rice-png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/basmati-rice-png.png -------------------------------------------------------------------------------- /frontend/src/assest/beetroot - vegetables.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/beetroot - vegetables.jpg -------------------------------------------------------------------------------- /frontend/src/assest/birthday-cake-png-clip-art-birthday-cake-.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/birthday-cake-png-clip-art-birthday-cake-.png -------------------------------------------------------------------------------- /frontend/src/assest/biryani-category.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/biryani-category.png -------------------------------------------------------------------------------- /frontend/src/assest/brinjal nagpure - vegetables.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/brinjal nagpure - vegetables.jpg -------------------------------------------------------------------------------- /frontend/src/assest/burger-category.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/burger-category.png -------------------------------------------------------------------------------- /frontend/src/assest/burger-king-whopper-with-cheese-png-image-purepng-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/burger-king-whopper-with-cheese-png-image-purepng-20.png -------------------------------------------------------------------------------- /frontend/src/assest/cabbage per pc - vegetables.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/cabbage per pc - vegetables.jpg -------------------------------------------------------------------------------- /frontend/src/assest/cake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/cake.png -------------------------------------------------------------------------------- /frontend/src/assest/cake1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/cake1.png -------------------------------------------------------------------------------- /frontend/src/assest/carrot red per kg - vegetables.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/carrot red per kg - vegetables.jpg -------------------------------------------------------------------------------- /frontend/src/assest/cauliflower 1 pc - vegetables.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/cauliflower 1 pc - vegetables.jpg -------------------------------------------------------------------------------- /frontend/src/assest/chicken-category.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/chicken-category.png -------------------------------------------------------------------------------- /frontend/src/assest/chocolate-ice-cream-sundae-neapolitan-ice-cream-ice-cream-cream-food-frozen-dessert-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/chocolate-ice-cream-sundae-neapolitan-ice-cream-ice-cream-cream-food-frozen-dessert-thumbnail.png -------------------------------------------------------------------------------- /frontend/src/assest/classic-cheeseburger-with-beef-patty-pickles-cheese-tomato-onion-lettuce-and-ketchup-mustard-free-png.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/classic-cheeseburger-with-beef-patty-pickles-cheese-tomato-onion-lettuce-and-ketchup-mustard-free-png.webp -------------------------------------------------------------------------------- /frontend/src/assest/coriander bunch 50g 200g - vegetables.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/coriander bunch 50g 200g - vegetables.jpg -------------------------------------------------------------------------------- /frontend/src/assest/cowpea beans 500g - vegetables.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/cowpea beans 500g - vegetables.jpg -------------------------------------------------------------------------------- /frontend/src/assest/cream-ice-pistachio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/cream-ice-pistachio.png -------------------------------------------------------------------------------- /frontend/src/assest/dish-food-cuisine-pizza-ingredient-pizza-hut-pepperoni-pizza.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/dish-food-cuisine-pizza-ingredient-pizza-hut-pepperoni-pizza.jpg -------------------------------------------------------------------------------- /frontend/src/assest/dosa-category.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/dosa-category.png -------------------------------------------------------------------------------- /frontend/src/assest/dosa-masala.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/dosa-masala.png -------------------------------------------------------------------------------- /frontend/src/assest/dragonfruit - fruits.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/dragonfruit - fruits.jpg -------------------------------------------------------------------------------- /frontend/src/assest/empty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/empty.gif -------------------------------------------------------------------------------- /frontend/src/assest/fresh-yellow-banana-fruit-free.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/fresh-yellow-banana-fruit-free.png -------------------------------------------------------------------------------- /frontend/src/assest/fried rice-category.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/fried rice-category.avif -------------------------------------------------------------------------------- /frontend/src/assest/fruits.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/fruits.jfif -------------------------------------------------------------------------------- /frontend/src/assest/garlic peeled - vegetables.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/garlic peeled - vegetables.jpg -------------------------------------------------------------------------------- /frontend/src/assest/ginger 200g - vegetables.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/ginger 200g - vegetables.jpg -------------------------------------------------------------------------------- /frontend/src/assest/green capsicum 500.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/green capsicum 500.jpg -------------------------------------------------------------------------------- /frontend/src/assest/green peas - vegetables.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/green peas - vegetables.jpg -------------------------------------------------------------------------------- /frontend/src/assest/ice-cream-bowl-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/ice-cream-bowl-image.png -------------------------------------------------------------------------------- /frontend/src/assest/ice-cream-images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/ice-cream-images.png -------------------------------------------------------------------------------- /frontend/src/assest/ice-cream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/ice-cream.png -------------------------------------------------------------------------------- /frontend/src/assest/indian garlic - 200g - vegetables.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/indian garlic - 200g - vegetables.jpg -------------------------------------------------------------------------------- /frontend/src/assest/login-animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/login-animation.gif -------------------------------------------------------------------------------- /frontend/src/assest/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/logo.png -------------------------------------------------------------------------------- /frontend/src/assest/mango-png-image-mongo-clipart-ripening-of-mango.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/mango-png-image-mongo-clipart-ripening-of-mango.png -------------------------------------------------------------------------------- /frontend/src/assest/mongo-clipart-gourd-transparent-png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/mongo-clipart-gourd-transparent-png.png -------------------------------------------------------------------------------- /frontend/src/assest/mongo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/mongo.png -------------------------------------------------------------------------------- /frontend/src/assest/musk melon - fruits.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/musk melon - fruits.jpg -------------------------------------------------------------------------------- /frontend/src/assest/noodles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/noodles.png -------------------------------------------------------------------------------- /frontend/src/assest/onion 5 kg - vegetables.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/onion 5 kg - vegetables.jpg -------------------------------------------------------------------------------- /frontend/src/assest/orange1.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/orange1.jfif -------------------------------------------------------------------------------- /frontend/src/assest/paneer-category.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/paneer-category.png -------------------------------------------------------------------------------- /frontend/src/assest/paneer-tikka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/paneer-tikka.png -------------------------------------------------------------------------------- /frontend/src/assest/pepperoni-pizza-chicago-style-pizza-italian-cuisine-breakfast-oven-pizza-food-baking-plate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/pepperoni-pizza-chicago-style-pizza-italian-cuisine-breakfast-oven-pizza-food-baking-plate.png -------------------------------------------------------------------------------- /frontend/src/assest/pineapple-fruit-tropical-fruit-natural-foods-ananas-ananas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/pineapple-fruit-tropical-fruit-natural-foods-ananas-ananas.png -------------------------------------------------------------------------------- /frontend/src/assest/pineapple.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/pineapple.jfif -------------------------------------------------------------------------------- /frontend/src/assest/pizza-category.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/pizza-category.png -------------------------------------------------------------------------------- /frontend/src/assest/pizza-hut-pizza.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/pizza-hut-pizza.png -------------------------------------------------------------------------------- /frontend/src/assest/png-transparent-flatbread-with-dip-dosa-chutney-indian-cuisine-crepe-idli-rice-food-recipe-cuisine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/png-transparent-flatbread-with-dip-dosa-chutney-indian-cuisine-crepe-idli-rice-food-recipe-cuisine.png -------------------------------------------------------------------------------- /frontend/src/assest/png-transparent-pasta-spaghetti-with-meatballs-italian-cuisine-cyborg-noodle-food-recipe-american-food.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/png-transparent-pasta-spaghetti-with-meatballs-italian-cuisine-cyborg-noodle-food-recipe-american-food.png -------------------------------------------------------------------------------- /frontend/src/assest/potato per kg - vegetables.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/potato per kg - vegetables.jpg -------------------------------------------------------------------------------- /frontend/src/assest/red capsicum 200g - vegetables.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/red capsicum 200g - vegetables.jpg -------------------------------------------------------------------------------- /frontend/src/assest/rice-bowl-rice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/rice-bowl-rice.png -------------------------------------------------------------------------------- /frontend/src/assest/sandwich-sandwich.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/sandwich-sandwich.png -------------------------------------------------------------------------------- /frontend/src/assest/sharad seedless grapes 500 - fruits.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/sharad seedless grapes 500 - fruits.jpg -------------------------------------------------------------------------------- /frontend/src/assest/spring onion per bunch - vegetables.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/spring onion per bunch - vegetables.jpg -------------------------------------------------------------------------------- /frontend/src/assest/thai guava 2 pcs - fruits.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/thai guava 2 pcs - fruits.jpg -------------------------------------------------------------------------------- /frontend/src/assest/thali-menu-veg-thali.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/thali-menu-veg-thali.png -------------------------------------------------------------------------------- /frontend/src/assest/watermelon - fruits.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/assest/watermelon - fruits.jpg -------------------------------------------------------------------------------- /frontend/src/component/AllProduct.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/component/AllProduct.js -------------------------------------------------------------------------------- /frontend/src/component/CardFeature.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/component/CardFeature.js -------------------------------------------------------------------------------- /frontend/src/component/FilterProduct.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/component/FilterProduct.js -------------------------------------------------------------------------------- /frontend/src/component/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/component/Header.js -------------------------------------------------------------------------------- /frontend/src/component/HomeCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/component/HomeCard.js -------------------------------------------------------------------------------- /frontend/src/component/cartProduct.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/component/cartProduct.js -------------------------------------------------------------------------------- /frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/index.css -------------------------------------------------------------------------------- /frontend/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/index.js -------------------------------------------------------------------------------- /frontend/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/logo.svg -------------------------------------------------------------------------------- /frontend/src/page/About.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/page/About.js -------------------------------------------------------------------------------- /frontend/src/page/Cancel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/page/Cancel.js -------------------------------------------------------------------------------- /frontend/src/page/Cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/page/Cart.js -------------------------------------------------------------------------------- /frontend/src/page/Contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/page/Contact.js -------------------------------------------------------------------------------- /frontend/src/page/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/page/Home.js -------------------------------------------------------------------------------- /frontend/src/page/Menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/page/Menu.js -------------------------------------------------------------------------------- /frontend/src/page/Newproduct.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/page/Newproduct.js -------------------------------------------------------------------------------- /frontend/src/page/Signup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/page/Signup.js -------------------------------------------------------------------------------- /frontend/src/page/Success.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/page/Success.js -------------------------------------------------------------------------------- /frontend/src/page/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/page/login.js -------------------------------------------------------------------------------- /frontend/src/redux/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/redux/index.js -------------------------------------------------------------------------------- /frontend/src/redux/productSlide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/redux/productSlide.js -------------------------------------------------------------------------------- /frontend/src/redux/userSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/redux/userSlice.js -------------------------------------------------------------------------------- /frontend/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/reportWebVitals.js -------------------------------------------------------------------------------- /frontend/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/setupTests.js -------------------------------------------------------------------------------- /frontend/src/utility/ImagetoBase64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/src/utility/ImagetoBase64.js -------------------------------------------------------------------------------- /frontend/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsAmitprajapati/-Build-a-COMPLETE-Fullstack-ecommerce-Responsive-MERN-App-React-Redux-Nodejs-MongoDB-Express/HEAD/frontend/tailwind.config.js --------------------------------------------------------------------------------