diff --git a/src/constant/common.ts b/src/constant/common.ts index 325da59e..83dee037 100644 --- a/src/constant/common.ts +++ b/src/constant/common.ts @@ -10,8 +10,8 @@ export const NOTION_RECRUIT_PATH = // NOTE: UTC 타임존에 맞추기 위해 9시간을 뺌 // TODO: 개발용으로 임시로 데이트 타임을 변경 -export const START_DATE = '2024-12-03T00:00:00.000Z'; // 04.27 00:00 -export const END_DATE = '2024-11-30T14:59:59.000Z'; // 05.04 11:59:59 +export const START_DATE = '2024-12-03T14:59:59.000Z'; // 04.27 00:00 +export const END_DATE = '2024-12-09T14:59:59.000Z'; // 05.04 11:59:59 // export const START_DATE = '2024-04-19T06:00:00.000Z'; // test // export const END_DATE = '2025-03-04T20:00:00.000Z'; // test diff --git a/src/features/Main/sections/MainIntroSection.tsx b/src/features/Main/sections/MainIntroSection.tsx index 125e6884..dc74ac89 100644 --- a/src/features/Main/sections/MainIntroSection.tsx +++ b/src/features/Main/sections/MainIntroSection.tsx @@ -10,6 +10,8 @@ import { theme } from '~/styles/theme'; */ export const MainIntroSection = () => { const { isTargetSize: isMobileSize } = useCheckWindowSize('mobile'); + // FIXME: 추후 링크 상수화 진행 + const handleClick = () => window.open('https://bit.ly/3YJgDmR'); return ( /** FIXME: 디자이너분들께 공유드리기, 사진 깨짐 현상 존재 @@ -32,7 +34,9 @@ export const MainIntroSection = () => { id={'title'} alt={'디프만 메인 '} /> - + ); diff --git a/src/pages/_app.tsx b/src/pages/_app.tsx index de17c3cb..0f5d8585 100644 --- a/src/pages/_app.tsx +++ b/src/pages/_app.tsx @@ -6,7 +6,6 @@ import { domMax, LazyMotion } from 'framer-motion'; import { Footer } from '~/components/Footer'; import { GNB } from '~/components/GNB'; -import WillRecruitNoticePopup from '~/components/Popup/WillRecruitNoticePopup'; import { BASE_URL } from '~/constant/common'; import { useRecordPageView } from '~/hooks/useRecordPageView'; import GlobalStyle from '~/styles/globalStyle'; @@ -30,7 +29,6 @@ export default function App({ Component, pageProps }: AppProps & InitialProps) { -