42 lines
1.4 KiB
HTML
42 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Hermes Command Center</title>
|
|
<link rel="stylesheet" href="/static/style.css">
|
|
</head>
|
|
<body>
|
|
<div id="app">
|
|
<nav class="sidebar">
|
|
<div class="logo">🎛️ Command Center</div>
|
|
<ul class="nav-links">
|
|
<li><a href="#agents" class="active">💬 Agents</a></li>
|
|
<li><a href="#config">⚙️ Config</a></li>
|
|
<li><a href="#vault">📚 Vault</a></li>
|
|
<li><a href="#network">🌐 Network</a></li>
|
|
</ul>
|
|
</nav>
|
|
<main class="content">
|
|
<section id="agents" class="panel">
|
|
<h2>Agent Chat</h2>
|
|
<p>Coming soon...</p>
|
|
</section>
|
|
<section id="config" class="panel" hidden>
|
|
<h2>Config Editor</h2>
|
|
<p>Coming soon...</p>
|
|
</section>
|
|
<section id="vault" class="panel" hidden>
|
|
<h2>Obsidian Vault</h2>
|
|
<p>Coming soon...</p>
|
|
</section>
|
|
<section id="network" class="panel" hidden>
|
|
<h2>Network Status</h2>
|
|
<p>Coming soon...</p>
|
|
</section>
|
|
</main>
|
|
</div>
|
|
<script src="/static/app.js"></script>
|
|
</body>
|
|
</html>
|