archy/neode-ui/public/lorabell-info.html
Dorian 3da0d53952 Add LoraBell app support and enhance package management in mock backend
- Introduced LoraBell as a static demo app in the mock backend, preventing its uninstallation.
- Merged static dev apps with Docker container data for improved package management.
- Updated app details and URLs for LoraBell in the Apps and AppDetails views.
- Enhanced the dummyApps utility to include LoraBell's configuration for consistent app representation.
2026-02-18 08:30:12 +00:00

20 lines
724 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>LoraBell</title>
<style>
body { background: #000; color: #fff; font-family: system-ui, sans-serif; padding: 2rem; max-width: 32rem; margin: 0 auto; }
h1 { font-size: 1.5rem; font-weight: 600; margin-bottom: 1rem; }
p { color: rgba(255,255,255,0.8); margin-bottom: 0.5rem; }
.muted { color: rgba(255,255,255,0.6); font-size: 0.875rem; }
</style>
</head>
<body>
<h1>LoraBell</h1>
<p>A LoRa based doorbell</p>
<p class="muted">This device has no web interface. It operates over LoRa radio and sends doorbell notifications to your node.</p>
</body>
</html>