← back to Dw War Room
showroom.html
18 lines
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>DW Showroom — Photorealistic 3D</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body { overflow: hidden; background: #0d0c0a; font-family: Inter, -apple-system, sans-serif; }
#showroom-container { width: 100vw; height: 100vh; }
</style>
</head>
<body>
<div id="showroom-container"></div>
<script type="module" src="/src/showroom/index.ts"></script>
</body>
</html>