Skip to content

Commit e5de613

Browse files
committed
fix: address review feedback (logo replacement, chrome button styling, social icon spacing)
1 parent 66e851e commit e5de613

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

app/layout.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,15 @@ import {
1111
} from './contexts/layoutContexts';
1212
import { ThemeProvider } from './contexts/themeContext';
1313
import FooterComponent from './components/layout/footer/footerComponent';
14-
import AnimatedCursor from 'react-animated-cursor';
1514
import { useMediaQuery } from 'react-responsive';
1615
import { Suspense, useContext } from 'react';
1716
import { CookiesProvider } from 'react-cookie';
1817
import Script from 'next/script';
18+
import dynamic from 'next/dynamic';
19+
20+
const AnimatedCursor = dynamic(() => import('react-animated-cursor'), {
21+
ssr: false,
22+
});
1923

2024
const inter = Poppins({
2125
subsets: ['latin'],

0 commit comments

Comments
 (0)