mirror of
https://github.com/System-End/site.git
synced 2026-04-19 16:28:21 +00:00
27 lines
701 B
JavaScript
Executable file
27 lines
701 B
JavaScript
Executable file
import React from 'react'
|
|
import Head from 'next/head'
|
|
|
|
import Analytics from '../components/analytics.js'
|
|
|
|
import Meta from '@hackclub/meta'
|
|
import '@hackclub/theme/fonts/reg-bold.css'
|
|
import theme from '../lib/theme'
|
|
import { ThemeProvider } from 'theme-ui'
|
|
import { Provider as BalancerProvider } from 'react-wrap-balancer'
|
|
|
|
const App = ({ Component, pageProps }) => (
|
|
<ThemeProvider theme={theme}>
|
|
<Meta as={Head}>
|
|
<meta
|
|
name="google-site-verification"
|
|
content="7zE7h5foPaxIcnv5Frq6BkcUb9-3UzVc8q3P_cexf9I"
|
|
/>
|
|
</Meta>
|
|
<BalancerProvider>
|
|
<Component {...pageProps} />
|
|
</BalancerProvider>
|
|
<Analytics />
|
|
</ThemeProvider>
|
|
)
|
|
|
|
export default App
|