NERDDISCO's picture
feat: use constants for COMMAND and renamed the package
2aa79c0
raw
history blame
490 Bytes
import Script from "next/script";
import TWEEN from "@tweenjs/tween.js";
import Mousetrap from "mousetrap";
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" />
<Script src="/js/utils.js" />
</>
);
}