hkuds--openharness
dea9ee8386
Replace the inline HTML template with a Vite + React + TypeScript app in autopilot-dashboard/. The new design follows the AnyFS dark theme aesthetic with animated SVG hero background (data streams, constellation nodes, binary rain, scanline), pipeline visualization, glass cards with status-colored glow effects, and JetBrains Mono typography throughout. - autopilot-dashboard/: new Vite+React project, builds to docs/autopilot/ - HeroBackground.tsx: multi-layer SMIL SVG animation - PipelineAnimation.tsx: QUEUE→PREP→RUN→CHECK→MERGE traveling glow - CI workflow updated to build React app before deploying to Pages - Python _render_dashboard_html simplified to a minimal fallback page Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
16 行
571 B
HTML
16 行
571 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Autopilot Kanban</title>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700&display=swap" rel="stylesheet" />
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|