Home.tsx 1.36 KB
Newer Older
Lee SeoYeon's avatar
Lee SeoYeon committed
1
2
import React, { FormEvent } from "react";
import { useAuth } from "../auth/auth.context";
3

Lee SeoYeon's avatar
Lee SeoYeon committed
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
export const Home = () => {
  const { user } = useAuth();

  function clickHome(e: React.MouseEvent<HTMLButtonElement>) {
    e.preventDefault();
    if (!user.isLoggedIn) {
      console.log("버튼");
      location.href = "/login";
    } else {
      location.href = "/profile";
    }
  }

  return (
    <div className="flex flex-col place-items-center">
      <div className="justify-end text-center text-3xl text-black h-16 mt-12">
        가장 쉽게 설문지를 만드세요!
      </div>
      <div className="flex flex-col place-items-center container">
        <div className="flex h-14 w-28 items-center border-2 border-themeColor font-bold text-black bg-gray-200 hover:bg-themeColor rounded-lg ">
          <button
            type="button"
Lee SeoYeon's avatar
.    
Lee SeoYeon committed
26
            className="text-center h-full w-28 font-bold text-black place-items-center"
Lee SeoYeon's avatar
Lee SeoYeon committed
27
28
            onClick={clickHome}
          >
Jiwon Yoon's avatar
Jiwon Yoon committed
29
            +
Lee SeoYeon's avatar
Lee SeoYeon committed
30
31
          </button>
        </div>
Lee SeoYeon's avatar
Lee SeoYeon committed
32
        <p className="text-center text-xl text-black mt-3">Create now!</p>
Lee SeoYeon's avatar
Lee SeoYeon committed
33
34
35
36
37
38
      </div>
      <div className="flex justify-center">
        <img
          src="https://3hbgf23vu0wr11wkpae5igwe-wpengine.netdna-ssl.com/wp-content/uploads/2021/04/SurveyExample_v3.jpg"
          className="object-scale-down justify-center"
        />
39
40
      </div>
    </div>
Lee SeoYeon's avatar
Lee SeoYeon committed
41
42
  );
};