Spaces:
Runtime error
Runtime error
File size: 430 Bytes
e5ae926 65567a2 9d1931d 055b556 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 32 |
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: #a9a9a9;
}
#__next {
display: contents;
}
`}
</style>
);
export default function Page() {
return (
<>
{styles}
<canvas id="canvas" style={{}} />
<Script src="/js/utils.js" />
);
}
|