File size: 427 Bytes
e5ae926
9d1931d
 
 
 
 
 
 
 
 
 
 
 
34bac1b
9d1931d
 
 
 
 
 
 
e5ae926
 
 
9d1931d
 
e5ae926
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import Script from "next/script";
const styles = (
	<style>
		{`
		* {
			margin: 0;
			padding: 0;
			box-sizing: border-box;
		}
		html, body {
			height: 100%;
			width: 100%;
			overflow: hidden;
		    background: white;
		}
		#__next {
			display: contents;
		}
		`}
	</style>
);
export default function Page() {
	return (
		<>
			{styles}
			<canvas id="canvas" style={{}} />
			<Script src="/js/utils.js" />
		</>
	);
}