aboutsummaryrefslogtreecommitdiffstats
path: root/site/about.html
diff options
context:
space:
mode:
authorChristophe Besson <cbesson@gmail.com>2026-08-11 11:50:08 +0200
committerChristophe Besson <cbesson@gmail.com>2026-08-11 11:50:08 +0200
commitc8f2de4025ea67b579e66cf608f08a8d35ee4a3c (patch)
treeae1261441af3ca372ce0e89c0000c5c1616dfc8d /site/about.html
parent441ef090055ff4f8c47e78826e0a992f45d918dc (diff)
downloadmeshbay-c8f2de4025ea67b579e66cf608f08a8d35ee4a3c.tar.gz
feat(hub): Phase 10.1–10.4 — Site overlay + admin/moderation UI
- Site overlay: landing page, /about, /downloads (dark/light, responsive) - User role column (user/moderator/admin) with config-based admin sync - require_moderator dependency + admin API (8 endpoints: stats, users, groups, audit logs) - Admin SPA panel at #/admin with 5 tabs (stats, users, groups, logs, blocklist) — visible only to moderators/admins - SPA also served at /app/ for Caddy site overlay integration - GET /v1/users/me returns current user role - 15 new tests, 147 total passing Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Diffstat (limited to 'site/about.html')
-rw-r--r--site/about.html59
1 files changed, 59 insertions, 0 deletions
diff --git a/site/about.html b/site/about.html
new file mode 100644
index 0000000..512047d
--- /dev/null
+++ b/site/about.html
@@ -0,0 +1,59 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+ <title>About — MeshBay</title>
+ <link rel="stylesheet" href="/site/assets/site.css">
+</head>
+<body>
+
+ <nav class="site-nav">
+ <a class="site-nav-brand" href="/">MeshBay</a>
+ <div class="site-nav-links">
+ <a href="/about.html">About</a>
+ <a href="/downloads.html">Downloads</a>
+ <a href="/app">Open App</a>
+ </div>
+ </nav>
+
+ <div class="page">
+ <h1>About MeshBay</h1>
+
+ <p>MeshBay is a decentralized, peer-to-peer platform for file sharing,
+ video streaming, and group messaging. It combines identity federation
+ (via Mesh Hubs) with truly peer-to-peer data exchange (via Mesh Nodes).</p>
+
+ <h2>Architecture</h2>
+ <p>The system has three components:</p>
+ <ul>
+ <li><strong>Mesh Hub</strong> — a lightweight identity authority and group registry.
+ It stores user accounts and group metadata, but never touches content.</li>
+ <li><strong>Mesh Node</strong> — runs on the host user's machine. It stores and serves
+ all files, streams, and chat messages directly to group members.</li>
+ <li><strong>Mesh Client</strong> — a web browser or Android app. Connects directly to
+ nodes for all data transfer. The hub is never in the data path.</li>
+ </ul>
+
+ <h2>Security</h2>
+ <p>Private groups use end-to-end encryption with ChaCha20-Poly1305.
+ Authentication uses Ed25519 signed JWTs. Key exchange is based on
+ X25519 ECDH with HKDF. Passwords are hashed with Argon2id (256 MB).</p>
+
+ <h2>Open Source</h2>
+ <p>MeshBay is open source. The code is available on
+ <a href="https://github.com/cbesson/meshbay">GitHub</a>.</p>
+
+ <h2>Contact</h2>
+ <p>For questions or bug reports, open an issue on the
+ <a href="https://github.com/cbesson/meshbay/issues">GitHub issue tracker</a>.</p>
+ </div>
+
+ <footer class="site-footer">
+ <a href="/">Home</a> &middot;
+ <a href="/downloads.html">Downloads</a> &middot;
+ <a href="https://github.com/cbesson/meshbay">GitHub</a>
+ </footer>
+
+</body>
+</html>