Skip to content

Commit

Permalink
chore(client): 채용 정보 섹션 부분 주석 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
SEOKKAMONI committed Jun 1, 2024
1 parent 4c8f1cc commit f29e08f
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions apps/client/src/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
'use client';

import styled from '@emotion/styled';
import { Flex, InlineBanner, Spacer, Stack, Text } from '@sickgyun/ui';
import { Flex, InlineBanner, Link, Spacer, Stack, Text } from '@sickgyun/ui';
import Image from 'next/image';
import { useRouter } from 'next/navigation';
import Footer from '@/components/common/Footer';
import Header from '@/components/common/Header';
import LoginBox from '@/components/main/LoginBox';
import MainBanner from '@/components/main/MainBanner';
import DirectProfileList from '@/components/profile/DirectProfileList';
import { MAJOR_LIST } from '@/constants/profile';
import RecuritList from '@/components/recurit/RecuritList';
import { MAJOR_LIST, RECRUIT_FULL_VIEW_LINK } from '@/constants/profile';
import { useUser } from '@/hooks/common/useUser';
import { LogClickEvent } from '@/libs/logging';
import type { Major } from '@/types/profile';

const MainPage = () => {
Expand Down Expand Up @@ -68,7 +70,7 @@ const MainPage = () => {
<DirectProfileList />
</StyledDirectProfileListWrapper>
</Stack>
{/* <Spacer height={64} />
<Spacer height={64} />
<Stack spacing={18} style={{ position: 'relative' }}>
<Flex align="center" justify="space-between">
<Text fontType="h4">채용 중인 회사에요!</Text>
Expand All @@ -82,7 +84,7 @@ const MainPage = () => {
<RecuritList />
</StyledRecuritListWrapper>
</Stack>
<Spacer height={64} /> */}
<Spacer height={64} />
</StyledMainPage>
</StyledMainPageLayout>
<Footer />
Expand Down Expand Up @@ -124,3 +126,8 @@ const StyledDirectProfileListWrapper = styled.div`
position: relative;
height: 180px;
`;

const StyledRecuritListWrapper = styled.div`
position: relative;
height: 300px;
`;

0 comments on commit f29e08f

Please sign in to comment.