-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_app.tsx
36 lines (33 loc) · 938 Bytes
/
_app.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import type { AppProps } from 'next/app'
import { ChainId, ThirdwebProvider } from '@thirdweb-dev/react'
import '../styles/globals.css'
import Head from 'next/head'
import { NextUIProvider } from '@nextui-org/react'
import Script from 'next/script'
// This is the chainId your dApp will work on.
const activeChainId = ChainId.Goerli
function MyApp({ Component, pageProps }: AppProps) {
return (
<ThirdwebProvider activeChain={activeChainId}>
<NextUIProvider>
<Head>
<title>Deez Eggz NFT Drop</title>
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
<meta
name="description"
content="Deez Eggz. A NFT art collection of 6900 eggz. Letz get crackin!"
/>
<meta
name="keywords"
content="NFT collection for Deez Eggz."
/>
</Head>
<Component {...pageProps} />
</NextUIProvider>
</ThirdwebProvider>
)
}
export default MyApp