aboutsummaryrefslogtreecommitdiffstats
path: root/site/index.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/index.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/index.html')
-rw-r--r--site/index.html54
1 files changed, 54 insertions, 0 deletions
diff --git a/site/index.html b/site/index.html
new file mode 100644
index 0000000..39339e0
--- /dev/null
+++ b/site/index.html
@@ -0,0 +1,54 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+ <title>MeshBay — Decentralized P2P Platform</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>
+
+ <section class="hero">
+ <h1>MeshBay</h1>
+ <p class="tagline">Decentralized peer-to-peer file sharing, video streaming, and group messaging.</p>
+ <a class="cta" href="/app">Open App</a>
+ </section>
+
+ <section class="features">
+ <div class="feature-card">
+ <div class="icon">&#x1F310;</div>
+ <h3>Peer-to-Peer</h3>
+ <p>Files and messages transfer directly between users.
+ No central server stores or relays your data.</p>
+ </div>
+ <div class="feature-card">
+ <div class="icon">&#x1F512;</div>
+ <h3>End-to-End Encrypted</h3>
+ <p>Private groups use strong encryption (ChaCha20-Poly1305, Ed25519).
+ Only group members can read the content.</p>
+ </div>
+ <div class="feature-card">
+ <div class="icon">&#x1F3E0;</div>
+ <h3>Self-Hostable</h3>
+ <p>Run your own hub and nodes. The software is open source
+ and designed for home servers and small communities.</p>
+ </div>
+ </section>
+
+ <footer class="site-footer">
+ <a href="/about.html">About</a> &middot;
+ <a href="/downloads.html">Downloads</a> &middot;
+ <a href="https://github.com/cbesson/meshbay">GitHub</a>
+ </footer>
+
+</body>
+</html>