├── .gitignore ├── README.md ├── _config.yml ├── css └── style.css ├── images ├── Cosmetics.png ├── arrow-right.svg ├── cosmetic-bottle.png ├── cosmetic-cream.png ├── cosmetics-bottles.png ├── cosmetics-jar.png ├── cosmetics-lady.png ├── cosmetics-tools.png ├── cosmetics-two-bottles.png ├── cosmetics-yellow-jar.png ├── facebook.svg ├── instagram.svg ├── logo.svg ├── search.svg ├── shopping-bag.svg ├── twitter.svg └── user.svg ├── index.html ├── js └── app.js ├── maxresdefault.jpg ├── package.json ├── postcss.config.js └── tailwind.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/E-commerce-website/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/E-commerce-website/HEAD/_config.yml -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/E-commerce-website/HEAD/css/style.css -------------------------------------------------------------------------------- /images/Cosmetics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/E-commerce-website/HEAD/images/Cosmetics.png -------------------------------------------------------------------------------- /images/arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/E-commerce-website/HEAD/images/arrow-right.svg -------------------------------------------------------------------------------- /images/cosmetic-bottle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/E-commerce-website/HEAD/images/cosmetic-bottle.png -------------------------------------------------------------------------------- /images/cosmetic-cream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/E-commerce-website/HEAD/images/cosmetic-cream.png -------------------------------------------------------------------------------- /images/cosmetics-bottles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/E-commerce-website/HEAD/images/cosmetics-bottles.png -------------------------------------------------------------------------------- /images/cosmetics-jar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/E-commerce-website/HEAD/images/cosmetics-jar.png -------------------------------------------------------------------------------- /images/cosmetics-lady.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/E-commerce-website/HEAD/images/cosmetics-lady.png -------------------------------------------------------------------------------- /images/cosmetics-tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/E-commerce-website/HEAD/images/cosmetics-tools.png -------------------------------------------------------------------------------- /images/cosmetics-two-bottles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/E-commerce-website/HEAD/images/cosmetics-two-bottles.png -------------------------------------------------------------------------------- /images/cosmetics-yellow-jar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/E-commerce-website/HEAD/images/cosmetics-yellow-jar.png -------------------------------------------------------------------------------- /images/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/E-commerce-website/HEAD/images/facebook.svg -------------------------------------------------------------------------------- /images/instagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/E-commerce-website/HEAD/images/instagram.svg -------------------------------------------------------------------------------- /images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/E-commerce-website/HEAD/images/logo.svg -------------------------------------------------------------------------------- /images/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/E-commerce-website/HEAD/images/search.svg -------------------------------------------------------------------------------- /images/shopping-bag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/E-commerce-website/HEAD/images/shopping-bag.svg -------------------------------------------------------------------------------- /images/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/E-commerce-website/HEAD/images/twitter.svg -------------------------------------------------------------------------------- /images/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/E-commerce-website/HEAD/images/user.svg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/E-commerce-website/HEAD/index.html -------------------------------------------------------------------------------- /js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/E-commerce-website/HEAD/js/app.js -------------------------------------------------------------------------------- /maxresdefault.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/E-commerce-website/HEAD/maxresdefault.jpg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/E-commerce-website/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/E-commerce-website/HEAD/postcss.config.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/E-commerce-website/HEAD/tailwind.config.js --------------------------------------------------------------------------------