diff --git a/frontend/src/pages/HomePage.tsx b/frontend/src/pages/HomePage.tsx
index 6d8357ba1..436b893ec 100644
--- a/frontend/src/pages/HomePage.tsx
+++ b/frontend/src/pages/HomePage.tsx
@@ -1,4 +1,4 @@
-import { Heading, Link, Spacing } from '@fun-eat/design-system';
+import { Heading, Spacing } from '@fun-eat/design-system';
import { useQueryErrorResetBoundary } from '@tanstack/react-query';
import { Suspense } from 'react';
import styled from 'styled-components';
@@ -6,12 +6,10 @@ import styled from 'styled-components';
import { Loading, ErrorBoundary, ErrorComponent, CategoryFoodList, CategoryStoreList } from '@/components/Common';
import { ProductRankingList, ReviewRankingList, RecipeRankingList } from '@/components/Rank';
import { IMAGE_URL } from '@/constants';
-import { useGA } from '@/hooks/common';
import channelTalk from '@/service/channelTalk';
export const HomePage = () => {
const { reset } = useQueryErrorResetBoundary();
- const { gaEvent } = useGA();
channelTalk.loadScript();
@@ -19,20 +17,10 @@ export const HomePage = () => {
pluginKey: process.env.CHANNEL_TALK_KEY ?? '',
});
- const handleBannerClick = () => {
- gaEvent({ category: 'link', action: '이벤트 배너 클릭', label: '배너' });
- };
-
return (
<>