In the project I created with React, after entering the login information, you are directed to a site consisting of home, products, and about pages. On this site, you can explore many products and view additional images of the desired product. The about section contains information about our team, along with links to their GitHub and LinkedIn profiles for further interaction.
- Logging in with email and password information
- Pagination for smooth transitions between pages.
- Easy product search using the filtering feature.
- React
- Axios for API requests
- React-Router-Dom
- DummyJSON API for products data
- Icons from React Icons
- Styling with Tailwind and CSS
- Sweetalert2 for alert
- When you hover over the email and password fields in the login section, the login email address and password are visible.
- Access detailed information and reviews for each item.
- Use the search function to find specific products.
Furkan Store (folder)
|
|----readme.md
SOLUTION
├── public
│ └── index.html
├── src
│ ├── assets
│ │ └── [images]
│ ├── components
│ │ ├── Loading.jsx
│ │ ├── Navbar.jsx
│ │ ├── ProductCard.jsx
│ │ ├── SearchInput.jsx
│ │ ├── Stats.jsx
│ │ └── Testimonial.jsx
│ ├── context
│ │ ├── AuthProvider.js
│ │ └── ProductProvider.js
│ ├── helpers
│ │ ├── data.js
│ │ └── icons.js
│ ├── pages
│ │ ├── About.jsx
│ │ ├── Home.jsx
│ │ ├── Login.jsx
│ │ ├── NotFound.jsx
│ │ ├── ProductDetail.jsx
│ │ └── Products.jsx
│ ├── router
│ │ ├── AppRouter.jsx
│ │ └── PrivateRouter.jsx
│ ├── App.js
│ ├── index.css
│ └── index.js
├── package.json
└── yarn.lock
The project is compatible with both wide-screen computers and mobile devices.
Products data provided by DummyJSON