aboutsummaryrefslogtreecommitdiffstats
path: root/site/index.html
blob: d40a81049161d50ee391993aee74f379b03f97f4 (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
55
56
<!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="icon" href="/favicon.ico" sizes="16x16 32x32 48x48">
  <link rel="apple-touch-icon" href="/apple-touch-icon.png">
  <link rel="stylesheet" href="/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>