diff --git a/apps/client/src/app/page.tsx b/apps/client/src/app/page.tsx
index e298051f..319ecee2 100644
--- a/apps/client/src/app/page.tsx
+++ b/apps/client/src/app/page.tsx
@@ -1,7 +1,7 @@
'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';
@@ -9,8 +9,10 @@ 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 = () => {
@@ -68,7 +70,7 @@ const MainPage = () => {
- {/*
+
채용 중인 회사에요!
@@ -82,7 +84,7 @@ const MainPage = () => {
- */}
+
@@ -124,3 +126,8 @@ const StyledDirectProfileListWrapper = styled.div`
position: relative;
height: 180px;
`;
+
+const StyledRecuritListWrapper = styled.div`
+ position: relative;
+ height: 300px;
+`;