Skip to content

Commit

Permalink
updated
Browse files Browse the repository at this point in the history
  • Loading branch information
Asfak00 committed Jun 6, 2023
1 parent b94b546 commit ffbf82b
Show file tree
Hide file tree
Showing 2 changed files with 125 additions and 1 deletion.
124 changes: 124 additions & 0 deletions Redme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,124 @@
# Project Introduction

- Everything you can do as a user on this website

- You can open an account.
- You can add products to the cart
- You can save favorite products in wishlist.
- If you click on a product, you can see its details.
- Account can be updated.
- You can view the profile.
- You can change the password.
- You can see all your orders.
- Any order can be trucked.
- You can add your address (in 3 variants)
- You can checkout.
- You can order new.
- You can logout.
- You can forget the password.

</br>

- As a seller you can do everything on this website

- Can open seller account.
- Can update seller documents.
- You can post new products.
- You can see all the product list of your shop.
- Can create new events.
- You can see all the events you have created.
- You can change customer order status.
- There is a system to withdraw money.
- There is an option to add coupon code.
- User has option to change order saters.

</br>

# Projects all packages

```
npm i @material-ui/core
```

```
npm i @material-ui/data-grid
```

```
npm i @reduxjs/toolkit
```

```
npm i country-state-city
```

```
npm i framer-motion
```

```
npm i react-icons
```

```
npm i react-image-magnify
```

```
npm i react-lottie
```

```
npm i react-redux
```

```
npm i react-router-dom
```

```
npm i react-toastify
```

```
npm i uuid
```

# Tailwind CSS install process

```
npm install -D tailwindcss postcss autoprefixer
```

```
npx tailwindcss init -p
```

## add this lines on your tailwind.config.js file

> /\*_ @type {import('tailwindcss').Config} _/
> export default {
> content: [
> "./index.html",
"./src/**/*.{js,ts,jsx,tsx}",

],
theme: {
extend: {},
},
plugins: [],
}

</br>

## add this classes on your index.css file

```
@tailwind base;
@tailwind components;
@tailwind utilities;
```

> any doubt please contact me!
> asfakahmed680@gmail.com
2 changes: 1 addition & 1 deletion src/Components/Layout/Checkout page/CheckoutSteps.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { motion } from "framer-motion";
const CheckoutSteps = ({ active }) => {
return (
<div className="w-full flex justify-center">
<div className="w-full justify-center flex items-center ">
<div className="w-full justify-center flex items-center flex-wrap">
<motion.div
initial={{ opacity: 0, x: -50 }}
animate={{ opacity: 1, x: 0 }}
Expand Down

0 comments on commit ffbf82b

Please sign in to comment.