├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt └── src ├── App.js ├── bootstrap-custom.css ├── bootstrap-custom.css.map ├── bootstrap-custom.scss ├── index.css ├── index.js ├── landing ├── Banner.js ├── FeatureProduct.js ├── Landing.js ├── banner-0.jpg ├── banner-0.png ├── banner-1.jpg └── banner-2.jpg ├── nillkin-case-1.jpg ├── nillkin-case.jpg ├── nillkin-case.webp ├── products ├── Product.js ├── ProductH.js ├── ProductList.js └── detail │ ├── ProductDetail.js │ └── RelatedProduct.js └── template ├── Content.js ├── Footer.js ├── Header.js ├── ScrollToTopOnMount.js └── Template.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phyohtetarkar/react-ecommerce-template/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phyohtetarkar/react-ecommerce-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phyohtetarkar/react-ecommerce-template/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phyohtetarkar/react-ecommerce-template/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phyohtetarkar/react-ecommerce-template/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phyohtetarkar/react-ecommerce-template/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phyohtetarkar/react-ecommerce-template/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phyohtetarkar/react-ecommerce-template/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phyohtetarkar/react-ecommerce-template/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phyohtetarkar/react-ecommerce-template/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phyohtetarkar/react-ecommerce-template/HEAD/src/App.js -------------------------------------------------------------------------------- /src/bootstrap-custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phyohtetarkar/react-ecommerce-template/HEAD/src/bootstrap-custom.css -------------------------------------------------------------------------------- /src/bootstrap-custom.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phyohtetarkar/react-ecommerce-template/HEAD/src/bootstrap-custom.css.map -------------------------------------------------------------------------------- /src/bootstrap-custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phyohtetarkar/react-ecommerce-template/HEAD/src/bootstrap-custom.scss -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phyohtetarkar/react-ecommerce-template/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phyohtetarkar/react-ecommerce-template/HEAD/src/index.js -------------------------------------------------------------------------------- /src/landing/Banner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phyohtetarkar/react-ecommerce-template/HEAD/src/landing/Banner.js -------------------------------------------------------------------------------- /src/landing/FeatureProduct.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phyohtetarkar/react-ecommerce-template/HEAD/src/landing/FeatureProduct.js -------------------------------------------------------------------------------- /src/landing/Landing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phyohtetarkar/react-ecommerce-template/HEAD/src/landing/Landing.js -------------------------------------------------------------------------------- /src/landing/banner-0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phyohtetarkar/react-ecommerce-template/HEAD/src/landing/banner-0.jpg -------------------------------------------------------------------------------- /src/landing/banner-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phyohtetarkar/react-ecommerce-template/HEAD/src/landing/banner-0.png -------------------------------------------------------------------------------- /src/landing/banner-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phyohtetarkar/react-ecommerce-template/HEAD/src/landing/banner-1.jpg -------------------------------------------------------------------------------- /src/landing/banner-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phyohtetarkar/react-ecommerce-template/HEAD/src/landing/banner-2.jpg -------------------------------------------------------------------------------- /src/nillkin-case-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phyohtetarkar/react-ecommerce-template/HEAD/src/nillkin-case-1.jpg -------------------------------------------------------------------------------- /src/nillkin-case.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phyohtetarkar/react-ecommerce-template/HEAD/src/nillkin-case.jpg -------------------------------------------------------------------------------- /src/nillkin-case.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phyohtetarkar/react-ecommerce-template/HEAD/src/nillkin-case.webp -------------------------------------------------------------------------------- /src/products/Product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phyohtetarkar/react-ecommerce-template/HEAD/src/products/Product.js -------------------------------------------------------------------------------- /src/products/ProductH.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phyohtetarkar/react-ecommerce-template/HEAD/src/products/ProductH.js -------------------------------------------------------------------------------- /src/products/ProductList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phyohtetarkar/react-ecommerce-template/HEAD/src/products/ProductList.js -------------------------------------------------------------------------------- /src/products/detail/ProductDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phyohtetarkar/react-ecommerce-template/HEAD/src/products/detail/ProductDetail.js -------------------------------------------------------------------------------- /src/products/detail/RelatedProduct.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phyohtetarkar/react-ecommerce-template/HEAD/src/products/detail/RelatedProduct.js -------------------------------------------------------------------------------- /src/template/Content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phyohtetarkar/react-ecommerce-template/HEAD/src/template/Content.js -------------------------------------------------------------------------------- /src/template/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phyohtetarkar/react-ecommerce-template/HEAD/src/template/Footer.js -------------------------------------------------------------------------------- /src/template/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phyohtetarkar/react-ecommerce-template/HEAD/src/template/Header.js -------------------------------------------------------------------------------- /src/template/ScrollToTopOnMount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phyohtetarkar/react-ecommerce-template/HEAD/src/template/ScrollToTopOnMount.js -------------------------------------------------------------------------------- /src/template/Template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phyohtetarkar/react-ecommerce-template/HEAD/src/template/Template.js --------------------------------------------------------------------------------