2021-03-30 15:47:08 -07:00
|
|
|
import Head from 'next/head'
|
2021-04-11 14:25:01 -07:00
|
|
|
import { ThemeProvider } from 'next-themes'
|
2021-04-02 11:26:21 -07:00
|
|
|
import '../node_modules/react-grid-layout/css/styles.css'
|
|
|
|
import '../node_modules/react-resizable/css/styles.css'
|
|
|
|
import '../styles/index.css'
|
2021-03-30 15:47:08 -07:00
|
|
|
|
|
|
|
function App({ Component, pageProps }) {
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<Head>
|
2021-04-11 14:25:01 -07:00
|
|
|
<title>Mango Markets</title>
|
2021-03-30 15:47:08 -07:00
|
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" />
|
|
|
|
<link
|
2021-04-11 14:25:01 -07:00
|
|
|
href="https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600&display=swap"
|
2021-03-30 15:47:08 -07:00
|
|
|
rel="stylesheet"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<script src="/datafeeds/udf/dist/polyfills.js"></script>
|
|
|
|
<script src="/datafeeds/udf/dist/bundle.js"></script>
|
|
|
|
</Head>
|
2021-04-12 06:32:01 -07:00
|
|
|
<ThemeProvider>
|
2021-04-11 14:25:01 -07:00
|
|
|
<Component {...pageProps} />
|
|
|
|
</ThemeProvider>
|
2021-03-30 15:47:08 -07:00
|
|
|
</>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
export default App
|