blob: 39339e003af063fd83b8b3a87d7eea01d1c95b7e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
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">🌐</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">🔒</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">🏠</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> ·
<a href="/downloads.html">Downloads</a> ·
<a href="https://github.com/cbesson/meshbay">GitHub</a>
</footer>
</body>
</html>
|