Initial commit

This commit is contained in:
Kevin F 2022-03-07 18:05:24 -06:00
commit 506075f978
9 changed files with 191 additions and 0 deletions

BIN
assets/apoc.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 630 KiB

BIN
assets/freedom.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

65
assets/grid.css Normal file
View File

@ -0,0 +1,65 @@
.parent {
display: grid;
grid-template-columns: repeat(2, 1fr) 0fr repeat(2, 1fr);
grid-template-rows: repeat(5, 1fr);
grid-column-gap: 0px;
grid-row-gap: 0px;
}
@media only screen and (max-width: 768px) {
.parent {
grid-template-columns: 1fr;
display: block;
}
.logo{
width: 100%;
}
}
body{
background: #1A1A40;
}
.div1 {
grid-area: 1 / 1 / 1 / 6;
text-align: center;
background: #7a0bc0;
}
.div2 {
grid-area: 2 / 1 / 3 / 3;
}
.div3 {
background: #363946;
grid-area: 2 / 4 / 3 / 6; }
.div4 {
grid-area: 3 / 1 / 4 / 3;
background: #c03e3e;
background-image: url("/assets/apoc.jpg");
background-position: center;
}
.div5 {
grid-area: 3 / 4 / 4 / 6;
background: url("/assets/xmr-bg.jpg");
background-position-x: center;
background-position-y: bottom;
background-size: 75%;
}
.div6 {
grid-area: 4 / 1 / 5 / 3;
background: #0d5eb1;
}
.div7 { grid-area: 4 / 4 / 5 / 6; }
.div8 { grid-area: 5 / 1 / 6 / 6; }
.column{
padding: 1em;
}
.column a, .column a:visited{
color: wheat;
}

BIN
assets/onionr-1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 KiB

BIN
assets/onionr-icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

BIN
assets/onionr-logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

60
assets/onionr.css Normal file
View File

@ -0,0 +1,60 @@
/* show… */
body {
background: #270082;
color: white;
font-family: Europa, Georgia, 'Times New Roman', Times, serif;
}
h1, h2 {
font-family: Arial, Helvetica, sans-serif;
}
.logo{
width: 25%;
max-height: 75%;
margin-left: -10px;
background-color: #270082;
border-radius: 5px;
}
.sub{
text-align: center;
font-size: xx-large;
}
p{
font-size: 1.3em;
text-align: justify;
hyphens: auto;
}
.icon{
text-align: center;
font-size: 3em;
}
button {
-webkit-box-shadow: 2px 5px 5px #666666;
-moz-box-shadow: 2px 5px 5px #666666;
box-shadow: 2px 5px 5px #666666;
font-family: Arial, Helvetica, sans-serif;
color: #ffffff;
font-size: 20px;
background: #c03e3e;
padding: 10px 20px 10px 20px;
text-decoration: none;
}
button:hover {
background: #c03e3e;
background-image: -webkit-linear-gradient(top, #3cb0fd, #3498db);
background-image: -moz-linear-gradient(top, #3cb0fd, #3498db);
background-image: -ms-linear-gradient(top, #3cb0fd, #3498db);
background-image: -o-linear-gradient(top, #3cb0fd, #3498db);
background-image: linear-gradient(to bottom, #3cb0fd, #3498db);
text-decoration: none;
}

BIN
assets/xmr-bg.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 192 KiB

66
index.html Normal file
View File

@ -0,0 +1,66 @@
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>onionr: p2p anonymity network</title>
<link rel="icon" type="image/x-icon" href="assets/onionr-icon.png">
<link rel="stylesheet" href="assets/onionr.css">
<link rel="stylesheet" href="assets/grid.css">
</head>
<body>
<div class="parent">
<div class="column div1">
<img src="assets/onionr-logo.png" class="logo">
<h1>
anonymous p2p network
</h2>
<a href="https://git.voidnet.tech/kev/onionr"><button>Download</button></a>
</div>
<div class="column div2">
<h2 class="sub">layered security & anonymity</h2>
<p>Onionr implements a gossip network with <a href="">Dandelion++</a> and node aging to reduce the effectiveness of sybil attacks.</p>
<p>Additionally, the default transport layers are Tor and i2p as an extra layer of privacy.</p>
<p>To mitigate leaks and security exploits, Onionr uses a unique whitelist system for system commands & bytecode, and has a script to run in an unprivileged container on Linux.</p>
<div class="icon">🕵️</div>
</div>
<div class="column div3">
<h2 class="sub">full decentralization, full freedom</h2>
<p>
Onionr is fully decentralized with no trusted nodes, and is fully open source under AGPLv3.
</p>
<p>Onionr is community funded, and anyone can contribute suggestions, code, or bug reports.</p>
<br><br><br><br>
<div class="icon">🗽</div>
</div>
<div class="column div4">
<h2 class="sub">disaster proof</h2>
<p>Onionr can be extended to run over any underlying transport, by default it uses Tor, LAN multicast, and <a href="https://en.wikipedia.org/wiki/Sneakernet">Sneakernet</a>.</p>
<p>Transport agnosticism means that Onionr would be usable even if the Internet ceased to exist.</p>
</div>
<div class="column div5">
<h2 class="sub">a free market</h2>
<p>The Onionr team is building a p2p marketplace plugin with the aim to enable Monero users to sell goods and services with minimal fees and full control over their storefront.</p>
</div>
<div class="column div6">
<h2 class="sub">built for humans</h2>
<p>
Onionr comes preloaded with various plugin applications with easy GUIs. There is no account setup and there are sane defaults.
</p>
<p>
With a modular code base, Onionr is easy to extend and build upon with plugins of your own.
</p>
<br><br><br><br>
<div class="icon">👩‍💻</div>
</div>
<div class="column div7">
</div>
<div class="column div8">
</div>
</div>
</body>
</html>