site/pages/_app.js
Lexi Mattick a85b66453f
Add OnBoard marketing page (#795)
Co-authored-by: Max Wofford <max@maxwofford.com>
2023-05-27 17:39:32 -04:00

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