diff options
Diffstat (limited to 'site/index.html')
| -rw-r--r-- | site/index.html | 54 |
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">🌐</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> |