This is a simple Amazon Clone built with React.js. It features a functional Add to Cart system and a demo product listing.
- 🛒 Add products to cart
- 🗑 Remove items from cart
- 📦 View product details
- 🌟 Responsive design
- ⚡ Fast performance with React
amazon-clone/
│-- src/
│ ├── components/ # Reusable UI components
│ │ ├── Cart.js # Shopping cart functionality
│ │ ├── Footer.js # Footer section
│ │ ├── Navbar.js # Navigation bar
│ │ ├── ProductCard.js # Product card component
│ │ ├── ProductDetails.js # Individual product page
│ ├── data/
│ │ ├── products.js # Sample product data
│ ├── App.js # Main React component
│ ├── App.css # Styling for the app
│ ├── index.js # React entry point
│-- public/ # Public assets
│-- package.json # Dependencies & scripts
│-- README.md # Project documentation
- Clone the repository:
git clone https://github.com/hrbohra/AmazonCloneReact.git
cd AmazonCloneReact
- Install dependencies:
npm install
- Start the development server:
npm start
The app will be available at http://localhost:3000
.
- Browse available products on the home page.
- Click on a product to view details.
- Add items to the cart using the "Add to Cart" button.
- View cart items and remove them if needed.
This project is licensed under the MIT License.
Happy Coding! 🚀