42 lines
1.8 KiB
HTML
42 lines
1.8 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>Rabby</title>
|
|
<link rel="stylesheet" href="styles.css" />
|
|
</head>
|
|
<body>
|
|
<aside class="sidebar">
|
|
<div class="brand"><span class="logo">▰</span><div><strong>Rabby</strong><small>Rust + Tauri terminal</small></div></div>
|
|
<button class="primary">+ New tab</button>
|
|
<nav>
|
|
<a class="active">⌘ Local Shell</a>
|
|
<a>🔐 SSH: production</a>
|
|
<a>☎ Telnet lab</a>
|
|
<a>🔌 Serial /dev/ttyUSB0</a>
|
|
</nav>
|
|
<section><h3>Features</h3><ul id="features"><li>Loading Rust backend…</li></ul></section>
|
|
</aside>
|
|
<main>
|
|
<header class="tabs">
|
|
<div class="tab active">Local Shell <span>●</span></div><div class="tab">Prod SSH</div><div class="spacer"></div><button>Command palette</button><button>Quake mode</button>
|
|
</header>
|
|
<section class="workspace">
|
|
<div class="pane large"><div class="chrome">bash — rabby-core tests</div><pre>$ cargo test -p rabby-core
|
|
running 6 tests
|
|
test slug_normalizes_profile_ids ... ok
|
|
test profile_validation_rejects_empty_command ... ok
|
|
test split_panes_count_nested_leaves ... ok
|
|
test split_ratio_has_sane_bounds ... ok
|
|
test workspace_adds_tabs_for_known_profiles ... ok
|
|
test feature_matrix_covers_tabby_readme_capabilities ... ok
|
|
|
|
Rabby keeps Tabby-style UX while moving the app shell to Rust/Tauri.</pre></div>
|
|
<div class="pane"><div class="chrome">profile inspector</div><div class="cards"><article><b>Session restore</b><p>Tabs and split tree are represented in Rust.</p></article><article><b>Small footprint target</b><p>No Electron runtime; static HTML/CSS plus Tauri backend.</p></article></div></div>
|
|
</section>
|
|
</main>
|
|
<script src="app.js"></script>
|
|
</body>
|
|
</html>
|