Profile.js 976 Bytes
Newer Older
Kim, Chaerin's avatar
Kim, Chaerin committed
1
const Profile = () => {
이재연's avatar
이재연 committed
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
  return (
    <div className="container-md" style={{ background: "#FCF4FF" }}>
      <>
        <div className="row">
          <form>
            <label
              class="form-label mx-2 my-4"
              style={{ fontSize: "18px", fontWeight: "bold" }}
            >
              프로필 정보
            </label>
            <button
              type="button"
              className="btn btn-outline-white "
              style={{
                background: "#E8B7FF",
                fontSize: "13px",
                fontWeight: "bold",
              }}
            >
              수정
            </button>
          </form>
          <div className="col"></div>
          <div className="col">
            <img src="/image2.jpg" style={{height:'320px', width:'320px'}} className="rounded-circle mt-3" />
          </div>
          <div className="col"></div>
Kim, Chaerin's avatar
Kim, Chaerin committed
30
        </div>
이재연's avatar
이재연 committed
31
32
33
      </>
    </div>
  );
Kim, Chaerin's avatar
Kim, Chaerin committed
34
35
36
};

export default Profile;