Skip to content

Commit

Permalink
Ft user edit profile 187584875 (#45)
Browse files Browse the repository at this point in the history
* [starts #187900329] Start  User-view-single-product

* [start #1879003229] user view & edit profile

* [start 187584875] user profile view and update

* [starts #187900329] Start  User-view-single-product

* add functionalities

* Added layout

* Added single asset view

* added styling

* added-styling

* added-stylings

* [starts #187900329] Start  User-view-single-product

* add functionalities

* Added layout

* added styling

* added-styling

* added-stylings

* [finishes 187584875] user profile vew and edit

* [start 187584875]finished ft-user-edit-profile-187584875

* [deliver 187584875] user edit profile

* [deliver 187584875] user edit profile

* [deliver 187584875] user edit profile

---------

Co-authored-by: ProgrammerDATCH <[email protected]>
  • Loading branch information
solangeihirwe03 and ProgrammerDATCH authored Aug 1, 2024
1 parent 3097f24 commit 1cd4e09
Show file tree
Hide file tree
Showing 31 changed files with 22,698 additions and 123 deletions.
1,421 changes: 1,327 additions & 94 deletions package-lock.json

Large diffs are not rendered by default.

15 changes: 7 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
"@reduxjs/toolkit": "^2.2.5",
"antd": "^5.19.2",
"axios": "^1.7.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"formik": "^2.4.6",
"html-webpack-plugin": "^5.6.0",
Expand All @@ -27,18 +28,14 @@
"react-dom": "^18.3.1",
"react-helmet": "^6.1.0",
"react-icons": "^5.2.1",
"react-loader-spinner": "^6.1.6",
"react-redux": "^9.1.2",
"react-router-dom": "^6.24.0",
"react-spinners": "^0.14.1",
"react-toastify": "^10.0.5",
"save-dev": "0.0.1-security",
"socket.io-client": "^4.7.5",
"yup": "^1.4.0",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@mui/icons-material": "^5.16.4",
"@mui/material": "^5.16.4",
"antd": "^5.19.2"
"yup": "^1.4.0"
},
"devDependencies": {
"@babel/core": "^7.24.7",
Expand Down Expand Up @@ -68,6 +65,7 @@
"@types/react-dom": "^18.3.0",
"@types/react-helmet": "^6.1.11",
"@types/testing-library__react": "^10.2.0",
"@types/webpack": "^5.28.5",
"@types/webpack-dev-server": "^4.7.2",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
Expand Down Expand Up @@ -100,8 +98,9 @@
"ts-node": "^10.9.2",
"typescript": "^5.5.2",
"url-loader": "^4.1.1",
"webpack": "^5.92.1",
"vite": "^5.3.5",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
}
}
}
Binary file added public/assets/Camera.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/ProfileImage.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/Rwanda_.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/avatar.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/sellerI.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/App.scss
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@
@import "./assets/styles/tables.scss";
@import "./assets/styles/adminDashboard.scss";
@import "./assets/styles/users.scss";
@import "./assets/styles/tables.scss";
@import "./assets//styles/UserProfile.scss"
19 changes: 19 additions & 0 deletions src/User.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
/* eslint-disable */
import React from 'react'
import { Outlet } from 'react-router-dom'
import Header from './components/layout/Header'
import Footer from './components/layout/Footer'

const User = () => {
return (
<>
<Header />
<Outlet />
<Footer />
</>


)
}

export default User
1 change: 0 additions & 1 deletion src/assets/styles/SellerProduct.scss
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@

max-width: 100%;
max-height: 100%;

.seller-product-header {
display: flex;
flex-direction: row;
Expand Down
Loading

0 comments on commit 1cd4e09

Please sign in to comment.