From 1d593df55940736ee695b677d2a721801a533f75 Mon Sep 17 00:00:00 2001 From: Osama Sayed Date: Thu, 7 Nov 2024 08:01:01 +0800 Subject: [PATCH] QF-1105 remove hiring footer section --- .../dls/Footer/TitleAndDescription.tsx | 22 ------------------- 1 file changed, 22 deletions(-) diff --git a/src/components/dls/Footer/TitleAndDescription.tsx b/src/components/dls/Footer/TitleAndDescription.tsx index 1d401c368c..072f347396 100644 --- a/src/components/dls/Footer/TitleAndDescription.tsx +++ b/src/components/dls/Footer/TitleAndDescription.tsx @@ -1,19 +1,12 @@ -import Trans from 'next-translate/Trans'; import useTranslation from 'next-translate/useTranslation'; import styles from './Footer.module.scss'; -import Link, { LinkVariant } from '@/dls/Link/Link'; import QuranTextLogo from '@/icons/quran-text-logo.svg'; -import { logButtonClick } from '@/utils/eventLogger'; const TitleAndDescription = () => { const { t } = useTranslation('common'); - const onHiringAnnouncementClicked = () => { - logButtonClick('footer_hiring_announcement'); - }; - return (
@@ -23,21 +16,6 @@ const TitleAndDescription = () => {
{t('footer.title')}

{t('footer.description')}

-
- - ), - }} - i18nKey="common:footer.hiring" - /> -
); };