import type { AppProps } from 'next/app' import { Provider } from 'react-redux' import { store } from '../store/store' import { Box, Button, ChakraProvider } from '@chakra-ui/react' import Meta from '../components/meta/Meta' import { GoogleOAuthProvider } from '@react-oauth/google' import ErrorBoundary from '../components/ErrorBoundary' import Footer from '../components/Footer' import Analytics from '../components/analytics/Analytics' import dynamic from 'next/dynamic' import LiveChat from '../components/livechat/LiveChat' function MyApp({ Component, pageProps }: AppProps) { const NoSSRNavbar = dynamic(() => import('../components/Navbar'), { ssr: false, }) return (