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 { AppLayoutProvider } from '@/app-layout'; import { SeoMessage } from '@/components'; import { store } from '@/state'; import '../styles/global.scss'; const DESCRIPTION = // eslint-disable-next-line max-len 'Scrabble Solver 2 - Free and open-source analysis tool for Scrabble, Scrabble Duel, Super Scrabble, Letter League, Crossplay, Literaki and Kelimelik. Quickly find top scoring words using given letters and board state. Available in English, French, German, Persian, Polish, Romanian, Spanish, and Turkish.'; const KEYWORDS = [ 'Scrabble Solver', 'Scrabble', 'Scrabble Duel', 'Solver', 'Super Scrabble', 'Kelimelik', 'Letter League', 'Crossplay', 'NYT Crossplay', 'Literaki', 'Board', 'Open-source', 'Open', 'Source', 'Word', 'Finder', 'Cheating', 'Word', 'English', 'Français', 'French', 'Deutsch', 'German', 'Polski', 'Polish', 'فارسی', 'Farsi', 'Español', 'Spanish', 'Română', 'Romanian', 'Türkçe', 'Turkish', 'SOWPODS', 'TWL06', 'SJP', 'FISE-2017', 'FISE-2', 'CNRTL', 'Kamil Mielnik', ].join(','); const App: FunctionComponent = ({ Component, pageProps }) => ( <> Scrabble Solver 2 ); export default App;