Files
pikasTech-HWLAB/web/hwlab-cloud-web/index.html
T
2026-05-21 14:45:20 +00:00

58 lines
1.5 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>HWLAB Cloud Web</title>
<link rel="stylesheet" href="./styles.css" />
<script type="module" src="./app.mjs"></script>
</head>
<body>
<main class="shell">
<header class="topbar">
<div>
<p class="eyebrow">HWLAB</p>
<h1>Cloud Web</h1>
</div>
<div class="status" id="status">dev skeleton</div>
</header>
<section class="panel">
<div class="panel-head">
<h2>Runtime</h2>
<p>Mock dashboard for the L6 CLI and cloud-web surface.</p>
</div>
<dl class="grid" id="runtime-grid"></dl>
</section>
<section class="panel">
<div class="panel-head">
<h2>MVP route</h2>
<p>Fixed dry-run path shared with the CLI skeleton.</p>
</div>
<ol class="steps" id="mvp-steps"></ol>
</section>
<section class="panel">
<div class="panel-head">
<h2>Projects</h2>
<p>Static project list seeded from the mock fixture.</p>
</div>
<div class="table-wrap">
<table>
<thead>
<tr>
<th>Project</th>
<th>Status</th>
<th>Environment</th>
<th>Updated</th>
</tr>
</thead>
<tbody id="projects-body"></tbody>
</table>
</div>
</section>
</main>
</body>
</html>