20 lines
724 B
HTML
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>
|