mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-04-15 04:52:31 +08:00
- Add research_web/index.html as entry point with navigation - Add research_web/js/api_client.js with all research API endpoints - Add research_web/js/app.js with Home and Project panel renderers - Add research_web/css/research.css with dark theme styling - Add server.py static route for /research endpoint - Add placeholder .gitkeep files for empty subdirectories
27 lines
882 B
HTML
27 lines
882 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Research Workbench</title>
|
|
<link rel="stylesheet" href="./css/research.css">
|
|
</head>
|
|
<body>
|
|
<div id="app">
|
|
<header class="app-header">
|
|
<h1>Research Workbench</h1>
|
|
<nav class="app-nav">
|
|
<button id="nav-home" class="nav-btn active">Home</button>
|
|
<button id="nav-projects" class="nav-btn">Projects</button>
|
|
<button id="nav-assets" class="nav-btn">Assets</button>
|
|
<button id="nav-canvas" class="nav-btn">Canvas</button>
|
|
</nav>
|
|
</header>
|
|
<main id="main-content">
|
|
<!-- Panels rendered here -->
|
|
</main>
|
|
</div>
|
|
<script type="module" src="./js/app.js"></script>
|
|
</body>
|
|
</html>
|