743e0db093
Added score info (uses http status). Added a config to make changing some values easier.
22 lines
600 B
JavaScript
22 lines
600 B
JavaScript
import Head from 'next/head'
|
|
|
|
import Config from '../config.json';
|
|
|
|
import '../styles/globals.css'
|
|
|
|
function MyApp({ Component, pageProps }) {
|
|
return <>
|
|
<Head>
|
|
<title>{Config.name}</title>
|
|
<meta name="twitter:title" content= {Config.name} />
|
|
<meta property="og:site_name" content= {Config.name} key="title" />
|
|
<meta property="og:url" content= {Config.url} key="title" />
|
|
<meta property="og:description" content= {Config.description} key="description" />
|
|
<meta name="theme-color" content= {Config.color} />
|
|
</Head>
|
|
<Component {...pageProps} />
|
|
</>
|
|
}
|
|
|
|
export default MyApp
|