├── .gitignore ├── css └── style.css ├── images ├── Banner.png ├── FASHION.png ├── Rectangle-41.png ├── T-shirts.png ├── apple-store.png ├── arrow.png ├── banner-image-2.png ├── banner-image-3.png ├── banner-image.png ├── brands │ ├── amazon.png │ ├── hm.png │ ├── lacoste.png │ ├── levis.png │ ├── obey.png │ └── shopify.png ├── coats.png ├── fav-1.png ├── fav-2.png ├── fb.svg ├── hoddiee.png ├── insta.svg ├── linkedin.png ├── logo-black.png ├── mobile-app.png ├── play-store.png ├── star.png └── twitter.svg ├── index.html ├── input.css ├── package.json └── tailwind.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithpriyesh/Ecommerce-Landing-page/HEAD/css/style.css -------------------------------------------------------------------------------- /images/Banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithpriyesh/Ecommerce-Landing-page/HEAD/images/Banner.png -------------------------------------------------------------------------------- /images/FASHION.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithpriyesh/Ecommerce-Landing-page/HEAD/images/FASHION.png -------------------------------------------------------------------------------- /images/Rectangle-41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithpriyesh/Ecommerce-Landing-page/HEAD/images/Rectangle-41.png -------------------------------------------------------------------------------- /images/T-shirts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithpriyesh/Ecommerce-Landing-page/HEAD/images/T-shirts.png -------------------------------------------------------------------------------- /images/apple-store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithpriyesh/Ecommerce-Landing-page/HEAD/images/apple-store.png -------------------------------------------------------------------------------- /images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithpriyesh/Ecommerce-Landing-page/HEAD/images/arrow.png -------------------------------------------------------------------------------- /images/banner-image-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithpriyesh/Ecommerce-Landing-page/HEAD/images/banner-image-2.png -------------------------------------------------------------------------------- /images/banner-image-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithpriyesh/Ecommerce-Landing-page/HEAD/images/banner-image-3.png -------------------------------------------------------------------------------- /images/banner-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithpriyesh/Ecommerce-Landing-page/HEAD/images/banner-image.png -------------------------------------------------------------------------------- /images/brands/amazon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithpriyesh/Ecommerce-Landing-page/HEAD/images/brands/amazon.png -------------------------------------------------------------------------------- /images/brands/hm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithpriyesh/Ecommerce-Landing-page/HEAD/images/brands/hm.png -------------------------------------------------------------------------------- /images/brands/lacoste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithpriyesh/Ecommerce-Landing-page/HEAD/images/brands/lacoste.png -------------------------------------------------------------------------------- /images/brands/levis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithpriyesh/Ecommerce-Landing-page/HEAD/images/brands/levis.png -------------------------------------------------------------------------------- /images/brands/obey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithpriyesh/Ecommerce-Landing-page/HEAD/images/brands/obey.png -------------------------------------------------------------------------------- /images/brands/shopify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithpriyesh/Ecommerce-Landing-page/HEAD/images/brands/shopify.png -------------------------------------------------------------------------------- /images/coats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithpriyesh/Ecommerce-Landing-page/HEAD/images/coats.png -------------------------------------------------------------------------------- /images/fav-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithpriyesh/Ecommerce-Landing-page/HEAD/images/fav-1.png -------------------------------------------------------------------------------- /images/fav-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithpriyesh/Ecommerce-Landing-page/HEAD/images/fav-2.png -------------------------------------------------------------------------------- /images/fb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithpriyesh/Ecommerce-Landing-page/HEAD/images/fb.svg -------------------------------------------------------------------------------- /images/hoddiee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithpriyesh/Ecommerce-Landing-page/HEAD/images/hoddiee.png -------------------------------------------------------------------------------- /images/insta.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithpriyesh/Ecommerce-Landing-page/HEAD/images/insta.svg -------------------------------------------------------------------------------- /images/linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithpriyesh/Ecommerce-Landing-page/HEAD/images/linkedin.png -------------------------------------------------------------------------------- /images/logo-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithpriyesh/Ecommerce-Landing-page/HEAD/images/logo-black.png -------------------------------------------------------------------------------- /images/mobile-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithpriyesh/Ecommerce-Landing-page/HEAD/images/mobile-app.png -------------------------------------------------------------------------------- /images/play-store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithpriyesh/Ecommerce-Landing-page/HEAD/images/play-store.png -------------------------------------------------------------------------------- /images/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithpriyesh/Ecommerce-Landing-page/HEAD/images/star.png -------------------------------------------------------------------------------- /images/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithpriyesh/Ecommerce-Landing-page/HEAD/images/twitter.svg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithpriyesh/Ecommerce-Landing-page/HEAD/index.html -------------------------------------------------------------------------------- /input.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithpriyesh/Ecommerce-Landing-page/HEAD/input.css -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithpriyesh/Ecommerce-Landing-page/HEAD/package.json -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithpriyesh/Ecommerce-Landing-page/HEAD/tailwind.config.js --------------------------------------------------------------------------------