├── .gitignore ├── README.md ├── package.json ├── postcss.config.js ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── App.js ├── App.test.js ├── components │ ├── card │ │ └── Card.js │ ├── cta │ │ └── Cta.js │ ├── footer │ │ └── Footer.js │ ├── hero │ │ └── Hero.js │ ├── loader │ │ └── loader.js │ ├── most popular │ │ └── PopularProducts.js │ ├── navbar │ │ └── Nav.js │ ├── product details │ │ └── ProductDetails.js │ └── testimonials │ │ └── Testimonials.js ├── index.css ├── index.js ├── pages │ ├── cart │ │ └── Cart.js │ ├── contact │ │ └── Contact.js │ ├── home │ │ └── Home.js │ ├── not found │ │ └── NotFound.js │ └── products │ │ └── Products.js ├── reportWebVitals.js ├── rtk │ ├── Store.js │ └── slices │ │ ├── CartSlice.js │ │ └── ProductsSlice.js └── setupTests.js └── tailwind.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/e-commerce/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/e-commerce/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/e-commerce/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/e-commerce/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/e-commerce/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/e-commerce/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/e-commerce/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/e-commerce/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/e-commerce/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/e-commerce/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/e-commerce/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/e-commerce/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/components/card/Card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/e-commerce/HEAD/src/components/card/Card.js -------------------------------------------------------------------------------- /src/components/cta/Cta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/e-commerce/HEAD/src/components/cta/Cta.js -------------------------------------------------------------------------------- /src/components/footer/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/e-commerce/HEAD/src/components/footer/Footer.js -------------------------------------------------------------------------------- /src/components/hero/Hero.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/e-commerce/HEAD/src/components/hero/Hero.js -------------------------------------------------------------------------------- /src/components/loader/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/e-commerce/HEAD/src/components/loader/loader.js -------------------------------------------------------------------------------- /src/components/most popular/PopularProducts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/e-commerce/HEAD/src/components/most popular/PopularProducts.js -------------------------------------------------------------------------------- /src/components/navbar/Nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/e-commerce/HEAD/src/components/navbar/Nav.js -------------------------------------------------------------------------------- /src/components/product details/ProductDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/e-commerce/HEAD/src/components/product details/ProductDetails.js -------------------------------------------------------------------------------- /src/components/testimonials/Testimonials.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/e-commerce/HEAD/src/components/testimonials/Testimonials.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/e-commerce/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/e-commerce/HEAD/src/index.js -------------------------------------------------------------------------------- /src/pages/cart/Cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/e-commerce/HEAD/src/pages/cart/Cart.js -------------------------------------------------------------------------------- /src/pages/contact/Contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/e-commerce/HEAD/src/pages/contact/Contact.js -------------------------------------------------------------------------------- /src/pages/home/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/e-commerce/HEAD/src/pages/home/Home.js -------------------------------------------------------------------------------- /src/pages/not found/NotFound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/e-commerce/HEAD/src/pages/not found/NotFound.js -------------------------------------------------------------------------------- /src/pages/products/Products.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/e-commerce/HEAD/src/pages/products/Products.js -------------------------------------------------------------------------------- /src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/e-commerce/HEAD/src/reportWebVitals.js -------------------------------------------------------------------------------- /src/rtk/Store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/e-commerce/HEAD/src/rtk/Store.js -------------------------------------------------------------------------------- /src/rtk/slices/CartSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/e-commerce/HEAD/src/rtk/slices/CartSlice.js -------------------------------------------------------------------------------- /src/rtk/slices/ProductsSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/e-commerce/HEAD/src/rtk/slices/ProductsSlice.js -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/e-commerce/HEAD/src/setupTests.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamElsayed94/e-commerce/HEAD/tailwind.config.js --------------------------------------------------------------------------------