32690c293e
- New dark UI with 7 tabs: Rig, FX Chain, Models, IRs, Presets, Settings, Record - All screens wired to live API endpoints - Real-time state via WebSocket + polling fallback - Models screen: list/load/unload/upload NAM files + Tone3000 search/install - IRs screen: list/load/unload/upload IR files + Tone3000 search/install - Presets screen: browse banks, activate, save, delete - Settings screen: WiFi scan/connect/hotspot, Bluetooth/MIDI, 4CM routing - Rig screen: live state, volume, bypass, tuner, signal chain - FX Chain screen: block params, per-block bypass - Serves at / instead of /ui - Built with Vite, ~71KB gzipped
14 lines
369 B
HTML
14 lines
369 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Pi Multi-FX Pedal</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.jsx"></script>
|
|
</body>
|
|
</html>
|