-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
45 lines (37 loc) · 1.56 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description"
content="The censorship resistant location-based messaging app that empowers anyone to have a voice." />
<title>LocPost</title>
<link rel="icon" href="./images/radar.svg" />
<link rel="stylesheet" href="./theme.css" />
<link rel="stylesheet" href="./index.css" />
<script src="index.js" type="module" defer></script>
</head>
<body>
<main>
<h1>
Welcome to <strong>LocPost</strong>!
</h1>
<h3>
The censorship resistant messaging app that empowers anyone to communicate anonymously around a location
</h3>
<button id="get-location" aria-label="Get location">
<img src="images/search-location.png" alt="Search around your location button" />
</button>
<p>Click the button above button to request access to your location and be redirected to a censorship-resistant
channel to exchange messages anonymously.
</p>
<p>
We use <a href="https://gun.eco/">GUN</a> to create a distributed database which is stored
amongst the network participants in their local storage inside the web browser. Each participant will
keep a copy of the database and GUN will take care of keeping them in sync.
</p>
<p><small>Made with ❤️ from <a href="https://ethberlin.ooo" target="_blank">ETHBerlin³</a></small><br>
<small><a href="https://github.com/tomyo/locpost/" target="_blank">Source code</a></small>
</p>
</main>
</body>