three.cad/static/index.html

30 lines
911 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta property="og:title" content="three.cad" />
<meta property="og:description" content="CAD in the browser" />
<meta property="og:url" content="" />
<meta property="og:image" content="" />
<link rel="apple-touch-icon" href="icon-192.png" />
<link rel="manifest" href="manifest.json" />
<!-- app.css references the css imported into app.jsx -->
<link rel="stylesheet" href="app.css">
<title>three.cad</title>
</head>
<body>
<canvas id="c"></canvas>
<div id="react"></div>
<div id="labels"></div>
<div id="stats"></div>
<script src="app.bundle.js"></script>
<script src="scene.bundle.js"></script>
<script src="solver.js"></script>
</body>
</html>