2021-01-09 17:50:45 +08:00
|
|
|
import '@/css/tailwind.css'
|
|
|
|
|
|
|
|
import { ThemeProvider } from 'next-themes'
|
|
|
|
import Head from 'next/head'
|
|
|
|
|
2021-07-28 23:25:05 +08:00
|
|
|
import Analytics from '@/components/analytics'
|
2021-01-10 14:39:42 +08:00
|
|
|
import LayoutWrapper from '@/components/LayoutWrapper'
|
2021-01-09 17:50:45 +08:00
|
|
|
|
|
|
|
export default function App({ Component, pageProps }) {
|
|
|
|
return (
|
|
|
|
<ThemeProvider attribute="class">
|
2021-05-29 16:39:40 +08:00
|
|
|
<Head>
|
|
|
|
<meta content="width=device-width, initial-scale=1" name="viewport" />
|
|
|
|
</Head>
|
2021-07-28 23:25:05 +08:00
|
|
|
<Analytics />
|
2021-05-29 16:39:40 +08:00
|
|
|
<LayoutWrapper>
|
|
|
|
<Component {...pageProps} />
|
|
|
|
</LayoutWrapper>
|
2021-01-09 17:50:45 +08:00
|
|
|
</ThemeProvider>
|
|
|
|
)
|
|
|
|
}
|