├── .gitignore ├── README.md ├── package.json ├── postcss.config.js ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── App.js ├── components │ ├── CartItem.js │ ├── Footer.js │ ├── Header.js │ ├── Hero.js │ ├── Product.js │ └── Sidebar.js ├── contexts │ ├── CartContext.js │ ├── ProductContext.js │ └── SidebarContext.js ├── img │ ├── bg_hero.svg │ ├── logo.svg │ └── woman_hero.png ├── index.css ├── index.js └── pages │ ├── Home.js │ └── ProductDetails.js └── tailwind.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianmihai01/ecommerce-shop-starter/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ecommerce-shop-starter -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianmihai01/ecommerce-shop-starter/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianmihai01/ecommerce-shop-starter/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianmihai01/ecommerce-shop-starter/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianmihai01/ecommerce-shop-starter/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianmihai01/ecommerce-shop-starter/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianmihai01/ecommerce-shop-starter/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianmihai01/ecommerce-shop-starter/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianmihai01/ecommerce-shop-starter/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianmihai01/ecommerce-shop-starter/HEAD/src/App.js -------------------------------------------------------------------------------- /src/components/CartItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianmihai01/ecommerce-shop-starter/HEAD/src/components/CartItem.js -------------------------------------------------------------------------------- /src/components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianmihai01/ecommerce-shop-starter/HEAD/src/components/Footer.js -------------------------------------------------------------------------------- /src/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianmihai01/ecommerce-shop-starter/HEAD/src/components/Header.js -------------------------------------------------------------------------------- /src/components/Hero.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianmihai01/ecommerce-shop-starter/HEAD/src/components/Hero.js -------------------------------------------------------------------------------- /src/components/Product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianmihai01/ecommerce-shop-starter/HEAD/src/components/Product.js -------------------------------------------------------------------------------- /src/components/Sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianmihai01/ecommerce-shop-starter/HEAD/src/components/Sidebar.js -------------------------------------------------------------------------------- /src/contexts/CartContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianmihai01/ecommerce-shop-starter/HEAD/src/contexts/CartContext.js -------------------------------------------------------------------------------- /src/contexts/ProductContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianmihai01/ecommerce-shop-starter/HEAD/src/contexts/ProductContext.js -------------------------------------------------------------------------------- /src/contexts/SidebarContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianmihai01/ecommerce-shop-starter/HEAD/src/contexts/SidebarContext.js -------------------------------------------------------------------------------- /src/img/bg_hero.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianmihai01/ecommerce-shop-starter/HEAD/src/img/bg_hero.svg -------------------------------------------------------------------------------- /src/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianmihai01/ecommerce-shop-starter/HEAD/src/img/logo.svg -------------------------------------------------------------------------------- /src/img/woman_hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianmihai01/ecommerce-shop-starter/HEAD/src/img/woman_hero.png -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianmihai01/ecommerce-shop-starter/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianmihai01/ecommerce-shop-starter/HEAD/src/index.js -------------------------------------------------------------------------------- /src/pages/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianmihai01/ecommerce-shop-starter/HEAD/src/pages/Home.js -------------------------------------------------------------------------------- /src/pages/ProductDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianmihai01/ecommerce-shop-starter/HEAD/src/pages/ProductDetails.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianmihai01/ecommerce-shop-starter/HEAD/tailwind.config.js --------------------------------------------------------------------------------