mirror of
https://github.com/System-End/site.git
synced 2026-04-19 20:55:09 +00:00
hackers
This commit is contained in:
parent
7b809c40d9
commit
5f99895da6
2 changed files with 47 additions and 13 deletions
|
|
@ -2,26 +2,27 @@ import React from 'react'
|
|||
import Head from 'next/head'
|
||||
|
||||
import Analytics from '../components/analytics.js'
|
||||
import { SessionProvider } from 'next-auth/react'
|
||||
|
||||
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'
|
||||
import '../styles/global.css'
|
||||
|
||||
const App = ({ Component, pageProps }) => (
|
||||
<ThemeProvider theme={theme}>
|
||||
<Meta as={Head}>
|
||||
<meta
|
||||
name="google-site-verification"
|
||||
content="7zE7h5foPaxIcnv5Frq6BkcUb9-3UzVc8q3P_cexf9I"
|
||||
/>
|
||||
</Meta>
|
||||
<BalancerProvider>
|
||||
const App = ({ Component, pageProps: {session, ...pageProps} }) => (
|
||||
<SessionProvider session={session}>
|
||||
<ThemeProvider theme={theme}>
|
||||
<Meta as={Head}>
|
||||
<meta
|
||||
name="google-site-verification"
|
||||
content="7zE7h5foPaxIcnv5Frq6BkcUb9-3UzVc8q3P_cexf9I"
|
||||
/>
|
||||
</Meta>
|
||||
<Component {...pageProps} />
|
||||
</BalancerProvider>
|
||||
<Analytics />
|
||||
</ThemeProvider>
|
||||
<Analytics />
|
||||
</ThemeProvider>
|
||||
</SessionProvider>
|
||||
)
|
||||
|
||||
export default App
|
||||
|
|
|
|||
33
styles/global.css
Normal file
33
styles/global.css
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
/*! system.css v0.1.11 - https://github.com/sakofchit/system.css */
|
||||
@font-face {
|
||||
font-family: Chicago;
|
||||
src: url(https://cloud-1w9dtunrs-hack-club-bot.vercel.app/0chicagoflf.woff) format('woff');
|
||||
}
|
||||
@font-face {
|
||||
font-family: Monaco;
|
||||
src: url(https://cloud-mfs6bhw8p-hack-club-bot.vercel.app/0monaco.woff) format('woff');
|
||||
}
|
||||
@font-face {
|
||||
font-family: Chicago_12;
|
||||
src: url(https://cloud-mfs6bhw8p-hack-club-bot.vercel.app/2chikarego2.woff) format('woff');
|
||||
}
|
||||
@font-face {
|
||||
font-family: Geneva_9;
|
||||
src: url(https://cloud-mfs6bhw8p-hack-club-bot.vercel.app/1finderskeepers.woff) format('woff');
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: Redaction;
|
||||
src: url(https://cloud-a1btd0ouf-hack-club-bot.vercel.app/0redaction-regular.woff2) format(woff2);
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: Space_Grotesk;
|
||||
src: url(https://cloud-lrrf7ozlc-hack-club-bot.vercel.app/0spacegrotesk_wght_.woff2) format('woff2');
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: Terminal_Grotesk;
|
||||
src: url("https://type.cargo.site/files/TerminalGrotesque.woff") format("woff");
|
||||
}
|
||||
|
||||
Loading…
Add table
Reference in a new issue