diff --git a/src/components/home/plan/component/PlanBox.tsx b/src/components/home/plan/component/PlanBox.tsx
index 6c630f5f..b0b4c9f1 100644
--- a/src/components/home/plan/component/PlanBox.tsx
+++ b/src/components/home/plan/component/PlanBox.tsx
@@ -10,10 +10,10 @@ const PlanBox = () => {
const CurriculumData = [
{
date: '3월',
- title: '트랙별\n세션 시작',
+ title: '1학기\n세션 시작',
},
{
- date: '6월',
+ date: '5월',
title: '아이디어톤',
},
{
@@ -22,7 +22,7 @@ const PlanBox = () => {
},
{
date: '9월',
- title: '트랙별\n스터디 시작',
+ title: '2학기\n세션 시작',
},
{
date: '12월',
diff --git a/src/components/home/plan/component/PlanTitleItem.tsx b/src/components/home/plan/component/PlanTitleItem.tsx
index 99e785c4..bb4815cc 100644
--- a/src/components/home/plan/component/PlanTitleItem.tsx
+++ b/src/components/home/plan/component/PlanTitleItem.tsx
@@ -15,7 +15,7 @@ const Title = styled.div`
font-style: normal;
text-align: center;
@media (min-width: 1024px) {
- line-height: 30px;
+ line-height: 20px;
}
@media (max-width: 1024px) {
padding: 1rem;
diff --git a/src/components/login/failed/FailedMessage.tsx b/src/components/login/failed/FailedMessage.tsx
index 118e43e7..60ac7666 100644
--- a/src/components/login/failed/FailedMessage.tsx
+++ b/src/components/login/failed/FailedMessage.tsx
@@ -5,52 +5,47 @@ import Image from 'next/image';
import alert from '@image/alert.png';
const FailedMessage = () => {
- return (
-
-
-
- 알림
-
- LIKE LION 계정으로만 로그인이 가능합니다.
-
- );
+ return (
+
+
+
+ 알림
+
+ 로그인 실패: 등록되지 않은 이메일입니다. 올바른 이메일을 입력해주세요.
+
+ );
};
export default FailedMessage;
const MessageWrapper = styled.div`
-display: flex;
-flex-direction: column;
-justify-content: space-evenly;
-align-items: center;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
-width: 46rem;
-height: 12rem;
-padding: 2rem 0;
+ width: 46rem;
+ height: 12rem;
+ padding: 2rem 0;
-background: #F5F5F5;
-border-radius: 20px;
+ background: #f5f5f5;
+ border-radius: 20px;
-div{
+ div {
display: flex;
justify-content: center;
align-items: center;
- div{
- margin-left: 5px;
+ div {
+ margin-left: 5px;
}
-
-}
-
+ }
`;
const StMessageText = styled.div`
-font-family: 'Pretendard';
-font-style: normal;
-font-weight: 500;
-font-size: 17px;
-color: #2D2D2D;
-
-/* margin-top: 7px; */
-`
-
+ font-family: 'Pretendard';
+ font-style: normal;
+ font-weight: 500;
+ font-size: 17px;
+ color: #2d2d2d;
+`;