We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66e851e commit e5de613Copy full SHA for e5de613
1 file changed
app/layout.tsx
@@ -11,11 +11,15 @@ import {
11
} from './contexts/layoutContexts';
12
import { ThemeProvider } from './contexts/themeContext';
13
import FooterComponent from './components/layout/footer/footerComponent';
14
-import AnimatedCursor from 'react-animated-cursor';
15
import { useMediaQuery } from 'react-responsive';
16
import { Suspense, useContext } from 'react';
17
import { CookiesProvider } from 'react-cookie';
18
import Script from 'next/script';
+import dynamic from 'next/dynamic';
19
+
20
+const AnimatedCursor = dynamic(() => import('react-animated-cursor'), {
21
+ ssr: false,
22
+});
23
24
const inter = Poppins({
25
subsets: ['latin'],
0 commit comments