blob: 3c238b9e63446e62fbcc59b799af2300ba7a0d52 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
import Head from 'next/head';
import { PreferencesContextWrapper } from '../components/preferencesContext';
import '../styles/global.css';
import '../styles/dark.css';
import '../styles/disk.css';
export default function VierOpEenRijWebsite({ Component, pageProps }) {
return <div>
<Head>
<title>4 op een rij</title>
<link rel="stylesheet" href="/font/stylesheet.css"/>
</Head>
<PreferencesContextWrapper>
<Component {...pageProps}/>
</PreferencesContextWrapper>
</div>
}
|