mirror of
https://github.com/bubblecup-12/VogelSocialMedia.git
synced 2025-07-07 19:18:51 +00:00
first profile page test
This commit is contained in:
parent
57e588de60
commit
6354b66a11
9 changed files with 20420 additions and 1460 deletions
32
code/frontend/src/Profile.tsx
Normal file
32
code/frontend/src/Profile.tsx
Normal file
|
@ -0,0 +1,32 @@
|
|||
import "./profile.css";
|
||||
import "./loginAndSignUpPage.css";
|
||||
import { useState } from "react";
|
||||
import Avatar from "@mui/material/Avatar";
|
||||
import QuiltedImageList from "./QuiltedImageList";
|
||||
import { deepOrange } from "@mui/material/colors";
|
||||
|
||||
function Profile() {
|
||||
return (
|
||||
<div className="profile-display">
|
||||
<div className="user-info">
|
||||
<div className="user">
|
||||
<Avatar
|
||||
alt="Username"
|
||||
src="./assets/images/OwlSignUp.png"
|
||||
sx={{ width: 56, height: 56, bgcolor: deepOrange[500] }}
|
||||
>
|
||||
U
|
||||
</Avatar>
|
||||
<span className="profile-username body-m">Username</span>
|
||||
{/* Bio */}
|
||||
</div>
|
||||
<span className="post-number">50 Posts</span>
|
||||
</div>
|
||||
<QuiltedImageList />
|
||||
<div className="image-list">
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default Profile;
|
Loading…
Add table
Add a link
Reference in a new issue