This is a fully responsive e-commerce shopping website project built using React and Tailwind CSS. The website utilizes the Fake Store API to fetch data and display products. The Context API is used to manage state throughout the application.
Home pagedisplays thefeatured products, which are fetched from the Fake Store API. Each product card displays the product image, name, and price.Home pagealso has a sectionCreatewhich helps to create a product by giving the necessary information such asproduct category,title,priceandimage linkProduct Detailspage showing a detailed view of the selected product, including an image, title, description and price.Product Detailspage also has the options toeditanddeletethe selected product.- The
productscontext gets updated everytimeCreate,EditorDeletetakes place.
- React: A JavaScript library for building user interfaces
- Tailwind CSS: A utility-first CSS framework for rapidly building custom designs.
- Fake Store API: A free API for testing and prototyping e-commerce websites
- Context API: A React API for managing global state in an application.