HomeGuestPage.js 1.29 KB
Newer Older
Kim, Chaerin's avatar
Kim, Chaerin committed
1
2
3
4
5
import Login from "../components/Login";
import SignUp from "../components/SignUp";

const HomeGuestPage = () => {
  return (
Kim, Chaerin's avatar
Kim, Chaerin committed
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
41
42
43
44
45
46
47
    <div className="d-flex flex-column justify-content-center h-100 font-weight-bold">
      <img src="BORA.PNG" className="w-100 p-4" />
      <div className="d-flex flex-column align-items-center">
        <button
          type="button"
          className="col-4 btn btn-info"
          data-bs-toggle="modal"
          data-bs-target="#loginModal"
        >
          로그인
        </button>
        <div
          className="modal fade"
          id="loginModal"
          tabIndex="-1"
          aria-labelledby="loginModalLabel"
          aria-hidden="true"
        >
          <div className="modal-dialog">
            <Login />
          </div>
        </div>
        <button
          type="button"
          className="col-4 btn btn-info"
          data-bs-toggle="modal"
          data-bs-target="#signupModal"
        >
          회원가입
        </button>
      </div>
      <div
        className="modal fade"
        id="signupModal"
        tabIndex="-1"
        aria-labelledby="signupModalLabel"
        aria-hidden="true"
      >
        <div className="modal-dialog">
          <SignUp />
        </div>
      </div>
Kim, Chaerin's avatar
Kim, Chaerin committed
48
49
50
51
52
    </div>
  );
};

export default HomeGuestPage;