diff --git a/public/js/hotJarLib.js b/public/js/hotJarLib.js
deleted file mode 100644
index d8f5c673f..000000000
--- a/public/js/hotJarLib.js
+++ /dev/null
@@ -1,8 +0,0 @@
-(function (h, o, t, j, a, r) {
- h.hj = h.hj || function () { (h.hj.q = h.hj.q || []).push(arguments) }
- h._hjSettings = { hjid: 3572956, hjsv: 6 };
- a = o.getElementsByTagName('head')[0];
- r = o.createElement('script'); r.async = 1;
- r.src = t + h._hjSettings.hjid + j + h._hjSettings.hjsv;
- a.appendChild(r);
-})(window, document, 'https://static.hotjar.com/c/hotjar-', '.js?sv=%27')
diff --git a/src/common/hotjar/HotJar.tsx b/src/common/hotjar/HotJar.tsx
deleted file mode 100644
index 0d84eb2bb..000000000
--- a/src/common/hotjar/HotJar.tsx
+++ /dev/null
@@ -1,17 +0,0 @@
-import Script from 'next/script'
-import getConfig from 'next/config'
-
-interface HotJar extends Window {
- hj: object
-}
-
-declare const window: HotJar
-
-export default function HotJar() {
- const { publicRuntimeConfig } = getConfig()
-
- if (typeof window !== undefined && typeof window.hj === 'function') {
- return null
- }
- return
-}
diff --git a/src/components/client/campaigns/CampaignsPage.tsx b/src/components/client/campaigns/CampaignsPage.tsx
index c451e392e..23290f95e 100644
--- a/src/components/client/campaigns/CampaignsPage.tsx
+++ b/src/components/client/campaigns/CampaignsPage.tsx
@@ -7,7 +7,6 @@ import CampaignFilter from './CampaignFilter'
import Layout from 'components/client/layout/Layout'
import { styled } from '@mui/material/styles'
-import dynamic from 'next/dynamic'
const PREFIX = 'CampaignsPage'
@@ -71,14 +70,11 @@ const Root = styled(Layout)(({ theme }) => ({
},
}))
-const HotJar = dynamic(() => import('common/hotjar/HotJar'), { ssr: false })
-
export default function CampaignsPage() {
const { t } = useTranslation()
return (
-
{t('campaigns:campaigns')}
diff --git a/src/components/client/index/IndexPage.tsx b/src/components/client/index/IndexPage.tsx
index 0403c4ab2..9917614b0 100644
--- a/src/components/client/index/IndexPage.tsx
+++ b/src/components/client/index/IndexPage.tsx
@@ -10,9 +10,6 @@ import PartnersSection from './sections/PartnersSection/PartnersSection'
import TeamMembersSection from './sections/TeamMembersSection/TeamMembersSection'
import JoinPodkrepiBgSection from './sections/JoinPodkrepiBgSection/JoinPodkrepiBgSection'
import FaqSection from './sections/FaqSection/FaqSection'
-import dynamic from 'next/dynamic'
-
-const HotJar = dynamic(() => import('common/hotjar/HotJar'), { ssr: false })
export default function IndexPage() {
const { t } = useTranslation('index')
@@ -23,7 +20,6 @@ export default function IndexPage() {
disableGutters
title={t('title')}
metaDescription={t('metaDescription')}>
-