Improve navigator UI and context actions

This commit is contained in:
Mikei386
2026-06-22 22:40:50 +02:00
parent 20205cddc0
commit f29ecb0be5
9 changed files with 176 additions and 15 deletions
+26
View File
@@ -0,0 +1,26 @@
<!doctype html>
<html lang="de">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>U-Navigator</title>
<link rel="stylesheet" href="/styles.css">
</head>
<body>
<div class="app-shell">
<header class="topbar">
<div>
<h1>U-Navigator</h1>
<p id="statusText">Initialisiere...</p>
</div>
<nav class="toolbar" aria-label="Workspace actions">
<button id="newExplorerButton" title="Explorer öffnen">Explorer</button>
<button id="newPropertiesButton" title="Eigenschaften öffnen">Eigenschaften</button>
<button id="newQueueButton" title="Transfer-Queue öffnen">Transfers</button>
</nav>
</header>
<main id="workspace" class="workspace" aria-label="U-Navigator Workspace"></main>
</div>
<script src="/app.js" type="module"></script>
</body>
</html>