import { FloatingDelayGroup } from '@floating-ui/react'; import { type AppProps } from 'next/app'; import Head from 'next/head'; import { type FunctionComponent } from 'react'; import { Provider } from 'react-redux'; import { SITE_DESCRIPTION, SITE_URL } from '@/parameters'; import { store } from '@/state'; import '../styles/global.scss'; const TITLE = 'Scrabble Solver 2 - Board Solver & Word Finder'; const App: FunctionComponent = ({ Component, pageProps, router }) => { const isIndexable = router.pathname === '/'; return ( <> {TITLE} {isIndexable ? : } ); }; export default App;