├── .gitignore ├── README.md ├── package.json ├── public ├── assets │ └── main.png.jpg ├── favicon.ico ├── index.html └── robots.txt └── src ├── components ├── Footer.jsx ├── Navbar.jsx ├── Products.jsx ├── index.js └── main.jsx ├── index.js ├── pages ├── AboutPage.jsx ├── Cart.jsx ├── Checkout.jsx ├── ContactPage.jsx ├── Home.jsx ├── Login.jsx ├── PageNotFound.jsx ├── Product.jsx ├── Products.jsx ├── Register.jsx └── index.js └── redux ├── action └── index.js ├── reducer ├── handleCart.js └── index.js └── store.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/react_eCommerce/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/react_eCommerce/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/react_eCommerce/HEAD/package.json -------------------------------------------------------------------------------- /public/assets/main.png.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/react_eCommerce/HEAD/public/assets/main.png.jpg -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/react_eCommerce/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/react_eCommerce/HEAD/public/index.html -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/react_eCommerce/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/components/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/react_eCommerce/HEAD/src/components/Footer.jsx -------------------------------------------------------------------------------- /src/components/Navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/react_eCommerce/HEAD/src/components/Navbar.jsx -------------------------------------------------------------------------------- /src/components/Products.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/react_eCommerce/HEAD/src/components/Products.jsx -------------------------------------------------------------------------------- /src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/react_eCommerce/HEAD/src/components/index.js -------------------------------------------------------------------------------- /src/components/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/react_eCommerce/HEAD/src/components/main.jsx -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/react_eCommerce/HEAD/src/index.js -------------------------------------------------------------------------------- /src/pages/AboutPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/react_eCommerce/HEAD/src/pages/AboutPage.jsx -------------------------------------------------------------------------------- /src/pages/Cart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/react_eCommerce/HEAD/src/pages/Cart.jsx -------------------------------------------------------------------------------- /src/pages/Checkout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/react_eCommerce/HEAD/src/pages/Checkout.jsx -------------------------------------------------------------------------------- /src/pages/ContactPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/react_eCommerce/HEAD/src/pages/ContactPage.jsx -------------------------------------------------------------------------------- /src/pages/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/react_eCommerce/HEAD/src/pages/Home.jsx -------------------------------------------------------------------------------- /src/pages/Login.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/react_eCommerce/HEAD/src/pages/Login.jsx -------------------------------------------------------------------------------- /src/pages/PageNotFound.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/react_eCommerce/HEAD/src/pages/PageNotFound.jsx -------------------------------------------------------------------------------- /src/pages/Product.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/react_eCommerce/HEAD/src/pages/Product.jsx -------------------------------------------------------------------------------- /src/pages/Products.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/react_eCommerce/HEAD/src/pages/Products.jsx -------------------------------------------------------------------------------- /src/pages/Register.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/react_eCommerce/HEAD/src/pages/Register.jsx -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/react_eCommerce/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/redux/action/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/react_eCommerce/HEAD/src/redux/action/index.js -------------------------------------------------------------------------------- /src/redux/reducer/handleCart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/react_eCommerce/HEAD/src/redux/reducer/handleCart.js -------------------------------------------------------------------------------- /src/redux/reducer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/react_eCommerce/HEAD/src/redux/reducer/index.js -------------------------------------------------------------------------------- /src/redux/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/react_eCommerce/HEAD/src/redux/store.js --------------------------------------------------------------------------------