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" - /> -
); };