2020-09-06 02:27:01 +02:00
|
|
|
import { IntlProvider } from 'react-intl';
|
2022-12-13 04:45:38 +01:00
|
|
|
import { QueryClient, QueryClientProvider } from '@tanstack/react-query';
|
2023-01-10 08:59:26 +01:00
|
|
|
import Head from 'next/head';
|
|
|
|
import { useRouter } from 'next/router';
|
2020-09-09 05:46:31 +02:00
|
|
|
import useLocale from 'hooks/useLocale';
|
2022-10-31 19:02:37 +01:00
|
|
|
import useConfig from 'hooks/useConfig';
|
2022-12-13 04:45:38 +01:00
|
|
|
import 'react-basics/dist/styles.css';
|
2020-08-06 04:04:02 +02:00
|
|
|
import 'styles/variables.css';
|
2023-01-10 08:59:26 +01:00
|
|
|
import 'styles/locale.css';
|
2020-08-02 06:20:52 +02:00
|
|
|
import 'styles/index.css';
|
2021-05-20 22:21:30 +02:00
|
|
|
import '@fontsource/inter/400.css';
|
|
|
|
import '@fontsource/inter/600.css';
|
2020-09-07 10:22:16 +02:00
|
|
|
|
2023-01-11 02:18:59 +01:00
|
|
|
const client = new QueryClient({
|
|
|
|
defaultOptions: {
|
|
|
|
queries: {
|
|
|
|
refetchOnWindowFocus: false,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
});
|
2022-12-13 04:45:38 +01:00
|
|
|
|
2020-07-17 10:03:38 +02:00
|
|
|
export default function App({ Component, pageProps }) {
|
2022-10-31 19:02:37 +01:00
|
|
|
const { locale, messages } = useLocale();
|
2023-01-10 08:59:26 +01:00
|
|
|
const { basePath } = useRouter();
|
2022-10-31 19:02:37 +01:00
|
|
|
useConfig();
|
|
|
|
|
|
|
|
const Wrapper = ({ children }) => <span className={locale}>{children}</span>;
|
2022-10-28 01:42:57 +02:00
|
|
|
|
2022-10-28 19:34:50 +02:00
|
|
|
if (process.env.uiDisabled) {
|
2022-10-28 01:42:57 +02:00
|
|
|
return null;
|
|
|
|
}
|
2020-08-05 07:45:05 +02:00
|
|
|
|
|
|
|
return (
|
2022-12-13 04:45:38 +01:00
|
|
|
<QueryClientProvider client={client}>
|
|
|
|
<IntlProvider locale={locale} messages={messages[locale]} textComponent={Wrapper}>
|
2023-01-10 08:59:26 +01:00
|
|
|
<Head>
|
|
|
|
<link rel="icon" href={`${basePath}/favicon.ico`} />
|
|
|
|
<link rel="apple-touch-icon" sizes="180x180" href={`${basePath}/apple-touch-icon.png`} />
|
|
|
|
<link rel="icon" type="image/png" sizes="32x32" href={`${basePath}/favicon-32x32.png`} />
|
|
|
|
<link rel="icon" type="image/png" sizes="16x16" href={`${basePath}/favicon-16x16.png`} />
|
|
|
|
<link rel="manifest" href={`${basePath}/site.webmanifest`} />
|
|
|
|
<link rel="mask-icon" href={`${basePath}/safari-pinned-tab.svg`} color="#5bbad5" />
|
|
|
|
<meta name="msapplication-TileColor" content="#da532c" />
|
|
|
|
<meta name="theme-color" content="#fafafa" media="(prefers-color-scheme: light)" />
|
|
|
|
<meta name="theme-color" content="#2f2f2f" media="(prefers-color-scheme: dark)" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
</Head>
|
2022-03-01 03:39:37 +01:00
|
|
|
<Component {...pageProps} />
|
2022-12-13 04:45:38 +01:00
|
|
|
</IntlProvider>
|
|
|
|
</QueryClientProvider>
|
2020-08-05 07:45:05 +02:00
|
|
|
);
|
2020-07-17 10:03:38 +02:00
|
|
|
}
|