mirror of
https://github.com/System-End/site.git
synced 2026-04-19 22:05:11 +00:00
16 lines
382 B
JavaScript
Executable file
16 lines
382 B
JavaScript
Executable file
import React from 'react'
|
|
import Head from 'next/head'
|
|
|
|
import Meta from '@hackclub/meta'
|
|
import '@hackclub/theme/fonts/reg-bold.css'
|
|
import theme from '../lib/theme'
|
|
import { ThemeProvider } from 'theme-ui'
|
|
|
|
const App = ({ Component, pageProps }) => (
|
|
<ThemeProvider theme={theme}>
|
|
<Meta as={Head} />
|
|
<Component {...pageProps} />
|
|
</ThemeProvider>
|
|
)
|
|
|
|
export default App
|