-
Notifications
You must be signed in to change notification settings - Fork 0
/
Profile.jsx
40 lines (39 loc) · 1.15 KB
/
Profile.jsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import "./profile.css";
import Topbar from "../../components/topbar/Topbar";
import Sidebar from "../../components/sidebar/Sidebar";
import Feed from "../../components/feed/Feed";
import Rightbar from "../../components/rightbar/Rightbar";
export default function Profile() {
return (
<>
<Topbar />
<div className="profile">
<Sidebar />
<div className="profileRight">
<div className="profileRightTop">
<div className="profileCover">
<img
className="profileCoverImg"
src="assets/post/3.jpeg"
alt=""
/>
<img
className="profileUserImg"
src="assets/person/7.jpeg"
alt=""
/>
</div>
<div className="profileInfo">
<h4 className="profileInfoName">Safak Kocaoglu</h4>
<span className="profileInfoDesc">Hello my friends!</span>
</div>
</div>
<div className="profileRightBottom">
<Feed />
<Rightbar profile/>
</div>
</div>
</div>
</>
);
}