diff --git a/src/components/templates/login/main/Main.tsx b/src/components/templates/login/main/Main.tsx index baa19c1..0e7fdba 100644 --- a/src/components/templates/login/main/Main.tsx +++ b/src/components/templates/login/main/Main.tsx @@ -1,4 +1,3 @@ -"use client"; import Image from "next/image"; import React from "react"; import logo from "@public/icons/logo.png"; diff --git a/src/components/templates/social/mainDetail/MainDetail.tsx b/src/components/templates/social/mainDetail/MainDetail.tsx index d8f9a2a..d1a8322 100644 --- a/src/components/templates/social/mainDetail/MainDetail.tsx +++ b/src/components/templates/social/mainDetail/MainDetail.tsx @@ -5,7 +5,7 @@ import BottomFixedBtn from "@/components/atoms/button/bottomFixed/BottomFixed"; import Letter from "@/components/atoms/letter/Letter"; import DetailProfile from "@/components/atoms/profile/detailProfile/DetailProfile"; import WriteModal from "@/components/organisms/modal/letter/writeModal/WriteModal"; -import ModalView from "@/components/molecules/modal/ModalView"; +import ModalView from "@/components/organisms/modal/ModalView"; import ModalPortal from "@/utils/ModalPortal"; import { AnimatePresence } from "framer-motion"; import useModal from "@/hooks/useModal"; diff --git a/src/styles/globals.css b/src/styles/globals.css index 053d17a..b6bf00e 100644 --- a/src/styles/globals.css +++ b/src/styles/globals.css @@ -2,33 +2,33 @@ @tailwind components; @tailwind utilities; -@import "../styles/variables.css"; +@import '../styles/variables.css'; @font-face { - font-family: "NotoSansKR"; + font-family: 'NotoSansKR'; font-weight: 400; font-style: normal; - src: url("../../public/fonts/NotoSansKR-Regular.ttf") format("truetype"); + src: url('../../public/fonts/NotoSansKR-Regular.ttf') format('truetype'); } @font-face { - font-family: "NotoSansKR"; + font-family: 'NotoSansKR'; font-weight: 500; font-style: normal; - src: url("../../public/fonts/NotoSansKR-Medium.ttf") format("truetype"); + src: url('../../public/fonts/NotoSansKR-Medium.ttf') format('truetype'); } @font-face { - font-family: "NotoSansKR"; + font-family: 'NotoSansKR'; font-weight: 700; font-style: normal; - src: url("../../public/fonts/NotoSansKR-Bold.ttf") format("truetype"); + src: url('../../public/fonts/NotoSansKR-Bold.ttf') format('truetype'); } @font-face { - font-family: "GangwonEduSaeeum_OTFMediumA"; - src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2201-2@1.0/GangwonEduSaeeum_OTFMediumA.woff") - format("woff"); + font-family: 'GangwonEduSaeeum_OTFMediumA'; + src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2201-2@1.0/GangwonEduSaeeum_OTFMediumA.woff') + format('woff'); font-weight: normal; font-style: normal; } @@ -107,7 +107,7 @@ } .gangwon-xl { - font-family: "GangwonEduSaeeum_OTFMediumA"; + font-family: 'GangwonEduSaeeum_OTFMediumA'; font-size: 20px; font-style: normal; font-weight: 400; @@ -115,7 +115,7 @@ } .gangwon-xl-under { - font-family: "GangwonEduSaeeum_OTFMediumA"; + font-family: 'GangwonEduSaeeum_OTFMediumA'; font-size: 20px; font-style: normal; font-weight: 400; @@ -123,7 +123,7 @@ } .gangwon-large { - font-family: "GangwonEduSaeeum_OTFMediumA"; + font-family: 'GangwonEduSaeeum_OTFMediumA'; font-size: 18px; font-style: normal; font-weight: 400; @@ -131,7 +131,7 @@ } .gangwon-medium { - font-family: "GangwonEduSaeeum_OTFMediumA"; + font-family: 'GangwonEduSaeeum_OTFMediumA'; font-size: 16px; font-style: normal; font-weight: 400; @@ -139,7 +139,7 @@ } .gangwon-small { - font-family: "GangwonEduSaeeum_OTFMediumA"; + font-family: 'GangwonEduSaeeum_OTFMediumA'; font-size: 14px; font-style: normal; font-weight: 400; @@ -148,6 +148,6 @@ } body { - font-family: "NotoSansKR"; + font-family: 'NotoSansKR'; background-color: var(--main-background); } diff --git a/src/types/Modal.ts b/src/types/Modal.ts index f0ff34e..d084bfa 100644 --- a/src/types/Modal.ts +++ b/src/types/Modal.ts @@ -12,11 +12,11 @@ export interface ModalViewProps extends HTMLAttributes { handler: () => void; }; } -export interface AuthModalProps { - authStatus: undefined | "proceeding" | "checking" | "failed" | "successed"; - studentInfo?: { - name: string; - major: string; - studentId: string; - }; -} +// export interface AuthModalProps { +// authStatus: undefined | "proceeding" | "checking" | "failed" | "successed"; +// studentInfo?: { +// name: string; +// major: string; +// studentId: string; +// }; +// }