diff --git a/frontend/src/pages/ClubDetailPage/components/InfoBox/InfoBox.tsx b/frontend/src/pages/ClubDetailPage/components/InfoBox/InfoBox.tsx
index a922e1194..104ffe404 100644
--- a/frontend/src/pages/ClubDetailPage/components/InfoBox/InfoBox.tsx
+++ b/frontend/src/pages/ClubDetailPage/components/InfoBox/InfoBox.tsx
@@ -40,7 +40,12 @@ const InfoBox = ({ sectionRefs, clubDetail }: InfoBoxProps) => {
{ label: '전화번호', value: clubDetail.presidentPhoneNumber },
{
label: 'SNS',
- render: ,
+ render: (
+
+ ),
},
],
refIndex: INFOTABS_SCROLL_INDEX.CLUB_INFO_TAB,
diff --git a/frontend/src/pages/ClubDetailPage/components/ShareButton/ShareButton.tsx b/frontend/src/pages/ClubDetailPage/components/ShareButton/ShareButton.tsx
index eea5ea29e..935ab62ba 100644
--- a/frontend/src/pages/ClubDetailPage/components/ShareButton/ShareButton.tsx
+++ b/frontend/src/pages/ClubDetailPage/components/ShareButton/ShareButton.tsx
@@ -43,7 +43,7 @@ const ShareButton = ({ clubId }: ShareButtonProps) => {
},
],
});
- trackEvent(`${clubDetail.name} 공유하기 버튼 클릭`);
+ trackEvent('공유하기 버튼 클릭', { clubName: clubDetail.name });
};
return (
diff --git a/frontend/src/pages/ClubDetailPage/components/SnsLinkIcons/SnsLinkIcons.tsx b/frontend/src/pages/ClubDetailPage/components/SnsLinkIcons/SnsLinkIcons.tsx
index 103cb50f0..4ca845bc1 100644
--- a/frontend/src/pages/ClubDetailPage/components/SnsLinkIcons/SnsLinkIcons.tsx
+++ b/frontend/src/pages/ClubDetailPage/components/SnsLinkIcons/SnsLinkIcons.tsx
@@ -2,12 +2,16 @@ import React from 'react';
import * as Styled from './SnsLinkIcons.styles';
import { SNS_CONFIG } from '@/constants/snsConfig';
import { SNSPlatform } from '@/types/club';
+import useMixpanelTrack from '@/hooks/useMixpanelTrack';
interface SnsLinkIconsProps {
apiSocialLinks: Partial>;
+ clubName?: string;
}
-const SnsLinkIcons = ({ apiSocialLinks }: SnsLinkIconsProps) => {
+const SnsLinkIcons = ({ apiSocialLinks, clubName }: SnsLinkIconsProps) => {
+ const trackEvent = useMixpanelTrack();
+
if (!apiSocialLinks) return null;
return (
@@ -21,6 +25,12 @@ const SnsLinkIcons = ({ apiSocialLinks }: SnsLinkIconsProps) => {
href={url}
target='_blank'
rel='noreferrer'
+ onClick={() =>
+ trackEvent('sns링크 버튼 클릭', {
+ platform,
+ clubName,
+ })
+ }
>