diff --git a/public/images/16th/main/reason/reason_1.png b/public/images/16th/main/reason/reason_1.png index cf23a304..7a73542b 100644 Binary files a/public/images/16th/main/reason/reason_1.png and b/public/images/16th/main/reason/reason_1.png differ diff --git a/public/images/16th/main/reason/reason_2.png b/public/images/16th/main/reason/reason_2.png index 3a00e5fc..732107c5 100644 Binary files a/public/images/16th/main/reason/reason_2.png and b/public/images/16th/main/reason/reason_2.png differ diff --git a/public/images/16th/main/reason/reason_3.png b/public/images/16th/main/reason/reason_3.png index 48714f9d..861cafc4 100644 Binary files a/public/images/16th/main/reason/reason_3.png and b/public/images/16th/main/reason/reason_3.png differ diff --git a/public/sitemap-0.xml b/public/sitemap-0.xml index 10bc1d1a..b69c57ad 100644 --- a/public/sitemap-0.xml +++ b/public/sitemap-0.xml @@ -1,9 +1,9 @@ -https://www.depromeet.com2024-11-26T14:32:05.024Zdaily0.7 -https://www.depromeet.com/about2024-11-26T14:32:05.024Zdaily0.7 -https://www.depromeet.com/apply2024-11-26T14:32:05.024Zdaily0.7 -https://www.depromeet.com/blog2024-11-26T14:32:05.024Zdaily0.7 -https://www.depromeet.com/project2024-11-26T14:32:05.024Zdaily0.7 -https://www.depromeet.com/recruit2024-11-26T14:32:05.024Zdaily0.7 +https://www.depromeet.com2024-12-02T13:03:08.104Zdaily0.7 +https://www.depromeet.com/about2024-12-02T13:03:08.105Zdaily0.7 +https://www.depromeet.com/apply2024-12-02T13:03:08.105Zdaily0.7 +https://www.depromeet.com/blog2024-12-02T13:03:08.105Zdaily0.7 +https://www.depromeet.com/project2024-12-02T13:03:08.105Zdaily0.7 +https://www.depromeet.com/recruit2024-12-02T13:03:08.105Zdaily0.7 \ No newline at end of file diff --git a/src/components/Button/Button.tsx b/src/components/Button/Button.tsx index 9c1379a1..417c98d6 100644 --- a/src/components/Button/Button.tsx +++ b/src/components/Button/Button.tsx @@ -46,14 +46,14 @@ const buttonCss = (theme: Theme, size: ButtonSize) => css` } `} - +/* NOTE: 16기에서는 불필요해서 사용을 하지 않았으나, 추후 사용을 위해 주석을 해제해주세요 &:hover { background-color: ${theme.colors.blue}; } &:active { background-color: ${theme.colors.blue}; - } + } */ &:disabled { background-color: ${theme.colors.lightGray}; diff --git a/src/components/GNB/GNB.tsx b/src/components/GNB/GNB.tsx index 610e6c91..dbf66fd5 100644 --- a/src/components/GNB/GNB.tsx +++ b/src/components/GNB/GNB.tsx @@ -9,36 +9,29 @@ import { MobileMenu } from '~/components/GNB/MobileMenu'; import { MobileMenuIcon } from '~/components/GNB/MobileMenuIcon'; import { GNB_MENU_NAME, GNBMenu } from '~/constant/gnb'; import { useDropDown } from '~/hooks/useDropdown'; +import useIsInProgress from '~/hooks/useIsInProgress'; import { mediaQuery } from '~/styles/media'; +import { getPathToRecruit } from '~/utils/utils'; const LOGO_IMAGE = `/images/16th/logo/depromeet.svg`; -const CURRENT_GENERATION = 16; -function NotifyButton() { - const handleClick = () => window.open('https://bit.ly/3YJgDmR'); +function ApplyButton() { + const { progressState } = useIsInProgress(); + const router = useRouter(); + const { label, action } = getPathToRecruit(router, progressState); + return ( - ); } -// TODO: 웹 사이트 오픈 시에 주석 해제 -// function ApplyButton() { -// const { isInProgress, dDay } = useIsInProgress(); -// const router = useRouter(); -// -// const onClick = () => { -// router.push('/apply'); -// }; -// -// return ( -// -// ); -// } - const linkButtonCss = css` height: 37px; padding: 8px 24px 8px 24px; @@ -73,7 +66,7 @@ export function GNB() { ))} - +