<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>WebGPU</title>
  <style>
    body {
      margin: 0;
      background-color: #222;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
    }

    canvas {
      border: 1px solid #555;
      background-color: black;
    }
  </style>
</head>

<body>
  <canvas id="webgpu-canvas"></canvas>
  <script type="module" src="./dist/index.js"></script>
</body>

</html>